UNPKG

json-rpc-dual-engine

Version:

JSON-RPC-2.0 client and server protocol-agnostic engine.

7 lines 289 B
import { JSONEntry as JSONValue } from 'json-types'; export type LoggerType = (message: string) => void; export type TransportType = (message: string) => void; export interface BaseAPIType { [method: string]: (...params: JSONValue[]) => JSONValue; } //# sourceMappingURL=types.d.ts.map