Variable JsonRpcResponseStructConst

JsonRpcResponseStruct: Struct<{
    id: null | string | number;
    jsonrpc: "2.0";
    result: Json;
} | {
    error: JsonRpcError;
    id: null | string | number;
    jsonrpc: "2.0";
}, null> = ...