Interface JSONRpc2ResponseError<T>

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

Type Parameters

Hierarchy

  • JSONRpc2ResultBase<T>
    • JSONRpc2ResponseError

Properties

Properties

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