interface JsonRpcSuccessResponse {
    id?: null | string | number;
    jsonrpc: "2.0";
    result: any;
}

Properties

Properties

id?: null | string | number
jsonrpc: "2.0"
result: any

Generated using TypeDoc