UNPKG
@awo00/smb2
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
0.4.8
0.4.7
0.4.3
0.4.2
A SMB2 implementation in TypeScript
github.com/awo00/smb2
awo00/smb2
@awo00/smb2
/
dist
/
server
/
Smb2Request.d.ts
8 lines
(7 loc)
•
229 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
Client
from
"./Client"
;
import
Server
from
"./Server"
;
import
ProtocolSmb2Request
from
"../protocol/smb2/Request"
;
export
default
class
Smb2Request
extends
ProtocolSmb2Request
{ server?:
Server
; client?:
Client
; }