UNPKG
node-smb2
Version:
latest (1.3.5)
1.3.5
1.3.3
1.3.2
1.3.1
1.3.0
1.2.0
A SMB2 implementation in TypeScript
github.com/drudge/node-smb2
drudge/node-smb2
node-smb2
/
dist
/
protocol
/
smb2
/
Dialect.d.ts
11 lines
(10 loc)
•
175 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
declare
enum
Dialect
{
Smb202
=
514
,
Smb210
=
528
,
Smb2
xx =
767
,
Smb300
=
768
,
Smb302
=
770
,
Smb311
=
785
,
Smb3
xx =
1023
}
export
default
Dialect
;