Interface JsonRpcResponse

interface JsonRpcResponse {
    error?: Error;
    id: undefined | string;
    jsonrpc: "2.0";
    method: string;
    result?: unknown;
}

Properties

error?: Error
id: undefined | string
jsonrpc: "2.0"
method: string
result?: unknown