From 252be50f2e4da41849a622fe7b6543a4cf191ef6 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 27 Nov 2022 23:59:51 -0500 Subject: [PATCH] *Update dist --- dist/index.d.ts | 3 +-- dist/index.d.ts.map | 2 +- dist/index.js | 5 +---- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/dist/index.d.ts b/dist/index.d.ts index 33956d3..4481f4a 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -1,7 +1,6 @@ -/// import ProtomuxRPC from "protomux-rpc"; export default class RPC extends ProtomuxRPC { constructor(stream: any, options?: {}); - request(method: any, value?: Buffer | Uint8Array | string, options?: {}): Promise; + request(method: any, value?: any | string, options?: {}): Promise; } //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/dist/index.d.ts.map b/dist/index.d.ts.map index f9a46a4..71ea18a 100644 --- a/dist/index.d.ts.map +++ b/dist/index.d.ts.map @@ -1 +1 @@ -{"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"} \ No newline at end of file +{"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,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,GAAE,GAAG,GAAG,MAAW,EAAE,OAAO,KAAK;CAGlE"} \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index 8b36fec..44f26d5 100644 --- a/dist/index.js +++ b/dist/index.js @@ -15,10 +15,7 @@ export default class RPC extends ProtomuxRPC { }; super(stream, options); } - async request(method, value = b4a.from(""), options = {}) { - if (!b4a.isBuffer(value)) { - value = b4a.from(value); - } + async request(method, value = "", options = {}) { return super.request(method, value, options); } }