*Update dist
This commit is contained in:
parent
4862013f03
commit
704abf6f4f
|
@ -1,9 +1,10 @@
|
||||||
import { Proxy } from "@lumeweb/libhyperproxy";
|
import { Proxy } from "@lumeweb/libhyperproxy";
|
||||||
export default class HandshakeProxy extends Proxy {
|
export default class HandshakeProxy extends Proxy {
|
||||||
private _node?;
|
|
||||||
constructor({ swarm, listen }: {
|
constructor({ swarm, listen }: {
|
||||||
swarm: any;
|
swarm: any;
|
||||||
listen?: boolean;
|
listen?: boolean;
|
||||||
});
|
});
|
||||||
|
private _node?;
|
||||||
|
get node(): any;
|
||||||
protected _init(): Promise<void>;
|
protected _init(): Promise<void>;
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,6 +40,9 @@ class HandshakeProxy extends libhyperproxy_1.Proxy {
|
||||||
});
|
});
|
||||||
const self = this;
|
const self = this;
|
||||||
}
|
}
|
||||||
|
get node() {
|
||||||
|
return this._node;
|
||||||
|
}
|
||||||
async _init() {
|
async _init() {
|
||||||
this._node = new node_1.SPVNode({
|
this._node = new node_1.SPVNode({
|
||||||
config: false,
|
config: false,
|
||||||
|
|
Loading…
Reference in New Issue