fix: make socket optional since we define it ourselves

This commit is contained in:
Derrick Hammer 2023-08-31 18:38:53 -04:00
parent 6625530f3d
commit 89e7d452cb
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ export default class HyperTransportPeer extends BasePeer {
peer: any; peer: any;
muxer: any; muxer: any;
protocol: string; protocol: string;
socket?: any;
}, },
) { ) {
super(options); super(options);