UNPKG
@jkcfg/std
Version:
latest (0.4.0)
0.4.0
0.3.2
0.3.0
0.2.10
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.1.0
jk standard library
github.com/jkcfg/jk
jkcfg/jk
@jkcfg/std
/
internal
/
rpc.d.ts
6 lines
(5 loc)
•
191 B
TypeScript
View Raw
1
2
3
4
5
6
/** *
@module
std/internal */
export
declare
function
RPC
(
method
:
string
, ...
args
:
any
[]
):
Promise
<
Uint8Array
>;
export
declare
function
RPCSync
(
method
:
string
, ...
args
:
any
[]
):
Uint8Array
;