UNPKG

modular-json-rpc

Version:

Modular JSON-RPC 2.0 library that allows easy addition of transports

10 lines (9 loc) 308 B
declare const JSONRPC_VERSION = "2.0"; declare const JSONRPC_TIMEOUT = 5000; declare class RPCMethodError extends Error { code: number; message: string; data: any; constructor(code: number, message: string, data?: any); } export { JSONRPC_VERSION, JSONRPC_TIMEOUT, RPCMethodError };