interface JsonRpcRequest<T> {
    id: JsonRpcId;
    jsonrpc: "2.0";
    method: string;
    params?: T;
}

Type Parameters

  • T

Properties

jsonrpc: "2.0"
method: string
params?: T

Generated using TypeDoc