Interface JSONRpc2ResponseResult<T>

interface JSONRpc2ResponseResult<T> {
    error?: JSONRpcResultError<T>;
    id: null | string | number;
    jsonrpc: "2.0";
    result: JSONRpc2ResultData<T>;
}

Type Parameters

Hierarchy

  • JSONRpc2ResultBase<T>
    • JSONRpc2ResponseResult

Properties

Properties

id: null | string | number
jsonrpc: "2.0"