Documentation - v0.29.4
    Preparing search index...
    WorkerInboundMessage:
        | { _mtcuteWorkerId: string; connectionId: string; type: "connect" }
        | { _mtcuteWorkerId: string; connectionId: string; type: "release" }
        | { _mtcuteWorkerId: string; connectionId: string; type: "heartbeat" }
        | {
            _mtcuteWorkerId: string;
            args: SerializedResult<unknown[]>;
            connectionId: string;
            id: number;
            method: string;
            target:
                | "custom"
                | "client"
                | "storage"
                | "storage-self"
                | "storage-peers"
                | "app-config"
                | "timers";
            type: "invoke";
            void: boolean;
            withAbort: boolean;
        }
        | {
            _mtcuteWorkerId: string;
            connectionId: string;
            id: number;
            type: "abort";
        }