@playlive/realtime-pipeline
    Preparing search index...

    Interface WebSocketCtor

    Minimal subset of the DOM WebSocket constructor + readyState constants this module needs. Avoids dragging in lib.dom for non-browser consumers.

    interface WebSocketCtor {
        new WebSocketCtor(
            url: string,
            protocols?: string | string[],
        ): WebSocketLike;
        CLOSED: number;
        CLOSING: number;
        CONNECTING: number;
        OPEN: number;
    }
    Index
    CLOSED: number
    CLOSING: number
    CONNECTING: number
    OPEN: number