@deltachat/jsonrpc-client
    Preparing search index...

    Type Alias Response

    Response object.

    type Response = {
        error?: RPC.Error;
        id: RPC.Id | null;
        jsonrpc: "2.0";
        result?: RPC.JSONValue;
    }
    Index

    Properties

    error?: RPC.Error

    Error occured during the method invocation.

    id: RPC.Id | null

    Request identifier.

    jsonrpc: "2.0"

    JSON-RPC protocol version.

    result?: RPC.JSONValue

    Return value of the method.