Datalayer VS Code Extension - v0.0.9
    Preparing search index...

    Interface WebSocketOpenMessage

    WebSocket open message

    interface WebSocketOpenMessage {
        body: { origin: string; protocol?: string };
        id: string;
        type: "websocket-open";
    }
    Index

    Properties

    Properties

    body: { origin: string; protocol?: string }

    Connection details

    Type Declaration

    • origin: string

      WebSocket origin URL

    • Optionalprotocol?: string

      WebSocket subprotocol

    id: string

    WebSocket connection ID

    type: "websocket-open"

    Message type discriminator