interface RpcErrorResponse<TError> {
    jsonrpc: "2.0";
    id:
        | undefined
        | null
        | string
        | number;
    error: TError;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

jsonrpc: "2.0"
id:
    | undefined
    | null
    | string
    | number
error: TError