Interface JsonRpcResponsePayload

interface JsonRpcResponsePayload {
    result?: null | any[];
    error?: null | JsonRpcError;
    jsonrpc?: string;
    id?: string | number;
}

Properties

result?: null | any[]
error?: null | JsonRpcError
jsonrpc?: string
id?: string | number