cxx-frontend
    Preparing search index...

    Interface JsonRpcResponseMessage

    A JSON-RPC response.

    Either result or error is set.

    interface JsonRpcResponseMessage {
        error?: { code: number; data?: JsonValue; message: string };
        id: JsonRpcId | null;
        jsonrpc: "2.0";
        method?: undefined;
        result?: JsonValue;
    }
    Index
    error?: { code: number; data?: JsonValue; message: string }
    id: JsonRpcId | null
    jsonrpc: "2.0"
    method?: undefined
    result?: JsonValue