*Update dist
This commit is contained in:
parent
cafa333041
commit
da4bda03ee
|
@ -1,5 +1,7 @@
|
||||||
|
/// <reference types="node" />
|
||||||
import ProtomuxRPC from "protomux-rpc";
|
import ProtomuxRPC from "protomux-rpc";
|
||||||
export default class RPC extends ProtomuxRPC {
|
export default class RPC extends ProtomuxRPC {
|
||||||
constructor(stream: any, options?: {});
|
constructor(stream: any, options?: {});
|
||||||
|
request(method: any, value?: Buffer | Uint8Array | string, options?: {}): Promise<any>;
|
||||||
}
|
}
|
||||||
//# sourceMappingURL=index.d.ts.map
|
//# sourceMappingURL=index.d.ts.map
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,WAAW,MAAM,cAAc,CAAA;AAOtC,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,WAAW;gBAC5B,MAAM,EAAE,GAAG,EAAE,OAAO,KAAK;CASxC"}
|
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,WAAW,MAAM,cAAc,CAAC;AAOvC,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,WAAW;gBAC9B,MAAM,EAAE,GAAG,EAAE,OAAO,KAAK;IAW/B,OAAO,CACX,MAAM,EAAE,GAAG,EACX,KAAK,GAAE,MAAM,GAAG,UAAU,GAAG,MAAqB,EAClD,OAAO,KAAK;CAQf"}
|
|
@ -9,9 +9,16 @@ export default class RPC extends ProtomuxRPC {
|
||||||
options = {
|
options = {
|
||||||
...{
|
...{
|
||||||
id: ID,
|
id: ID,
|
||||||
valueEncoding: c.json
|
valueEncoding: c.json,
|
||||||
}, ...options
|
},
|
||||||
|
...options,
|
||||||
};
|
};
|
||||||
super(stream, options);
|
super(stream, options);
|
||||||
}
|
}
|
||||||
|
async request(method, value = b4a.from(""), options = {}) {
|
||||||
|
if (!b4a.isBuffer(value)) {
|
||||||
|
value = b4a.from(value);
|
||||||
|
}
|
||||||
|
return super.request(method, value, options);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue