CCC Docs
    Preparing search index...

    Interface RpcErrorResponse<TError>

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

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

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