Interface JSONRpc2Request<T>

interface JSONRpc2Request<T> {
    id?: JSONRpcId;
    jsonrpc: "2.0";
    method: T;
    params: JSONRpc2RequestParams<T>;
}

Type Parameters

Properties

jsonrpc: "2.0"
method: T