diff --git a/dist/proxy.d.ts b/dist/proxy.d.ts index 3d85a7c..a3f62dc 100644 --- a/dist/proxy.d.ts +++ b/dist/proxy.d.ts @@ -9,7 +9,7 @@ export default class Proxy { private _listen; private _socketOptions; private _autostart; - constructor({ swarm, protocol, onopen, onreceive, onsend, onclose, listen, autostart, }: ProxyOptions); + constructor({ swarm, protocol, onopen, onreceive, onsend, onclose, listen, autostart, emulateWebsocket, }: ProxyOptions); private _swarm; get swarm(): any; private _protocol; diff --git a/dist/proxy.js b/dist/proxy.js index 5ceb02e..8be98fa 100644 --- a/dist/proxy.js +++ b/dist/proxy.js @@ -9,12 +9,18 @@ class Proxy { _listen; _socketOptions; _autostart; - constructor({ swarm, protocol, onopen, onreceive, onsend, onclose, listen = false, autostart = false, }) { + constructor({ swarm, protocol, onopen, onreceive, onsend, onclose, listen = false, autostart = false, emulateWebsocket = false, }) { this._swarm = swarm; this._protocol = protocol; this._listen = listen; this._autostart = autostart; - this._socketOptions = { onopen, onreceive, onsend, onclose }; + this._socketOptions = { + onopen, + onreceive, + onsend, + onclose, + emulateWebsocket, + }; this.init(); } _swarm;