CCC Docs
    Preparing search index...

    Interface RpcSuccessResponse<Method>

    interface RpcSuccessResponse<Method extends keyof Requests> {
        jsonrpc: "2.0";
        id: undefined | null | string | number;
        result: Return<Method>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    jsonrpc: "2.0"
    id: undefined | null | string | number
    result: Return<Method>