UNPKG

neo-blockchain-client

Version:
12 lines (9 loc) 214 B
/* @flow */ export type JSONRPCRequest = {| method: string, params?: any, |}; export type JSONRPCResponse = any; export interface JSONRPCProvider { request(req: JSONRPCRequest): Promise<JSONRPCResponse>; }