cxx-frontend
    Preparing search index...

    Interface JsonRpcRequestMessage

    A JSON-RPC request or notification.

    Notifications are the messages without an id.

    interface JsonRpcRequestMessage {
        id?: JsonRpcId;
        jsonrpc: "2.0";
        method: string;
        params?: JsonObject | JsonArray;
        result?: undefined;
    }
    Index
    jsonrpc: "2.0"
    method: string
    result?: undefined