@jambonz/sdk
    Preparing search index...

    Interface WsResponse

    Outbound WebSocket message to jambonz.

    interface WsResponse {
        type: "ack" | "command";
        msgid?: string;
        command?: string;
        queueCommand?: boolean;
        data?: unknown;
    }
    Index

    Properties

    type: "ack" | "command"
    msgid?: string
    command?: string
    queueCommand?: boolean
    data?: unknown