kkrpc
    Preparing search index...

    Interface Message<T>

    This file contains the serialization and deserialization functions for the RPC protocol.

    interface Message<T = any> {
        args: T;
        callbackIds?: string[];
        id: string;
        method: string;
        type: "request" | "response" | "callback";
        version?: "json" | "superjson";
    }

    Type Parameters

    • T = any
    Index

    Properties

    args: T
    callbackIds?: string[]
    id: string
    method: string
    type: "request" | "response" | "callback"
    version?: "json" | "superjson"