*update dist

This commit is contained in:
Derrick Hammer 2023-04-15 19:35:19 -04:00
parent b2b041c3a1
commit 422c11b9b8
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 6 additions and 3 deletions

View File

@ -64,6 +64,9 @@ class MultiSocketProxy extends proxy_js_1.default {
createDefaultMessage: false, createDefaultMessage: false,
...options, ...options,
}); });
this._socketOptions.onchannel = this.handleNewPeerChannel.bind(this);
this._socketOptions.onclose = this.handleClosePeer.bind(this);
this._socketOptions.onopen = this.handlePeer.bind(this);
if (options.socketClass) { if (options.socketClass) {
this.socketClass = options.socketClass; this.socketClass = options.socketClass;
} }

6
dist/proxy.d.ts vendored
View File

@ -6,9 +6,9 @@ export interface ProxyOptions extends DataSocketOptions {
autostart?: boolean; autostart?: boolean;
} }
export default abstract class Proxy { export default abstract class Proxy {
private _listen; protected _listen: any;
private _socketOptions; protected _socketOptions: DataSocketOptions;
private _autostart; protected _autostart: boolean;
constructor({ swarm, protocol, onopen, onreceive, onsend, onclose, onchannel, listen, autostart, emulateWebsocket, createDefaultMessage, }: ProxyOptions); constructor({ swarm, protocol, onopen, onreceive, onsend, onclose, onchannel, listen, autostart, emulateWebsocket, createDefaultMessage, }: ProxyOptions);
private _swarm; private _swarm;
get swarm(): any; get swarm(): any;