Magek Framework
    Preparing search index...

    Interface WebSocketMessage

    interface WebSocketMessage {
        connectionContext: {
            connectionId: string;
            eventType: "CONNECT" | "MESSAGE" | "DISCONNECT";
        };
        data?: any;
        incomingMessage?: any;
    }
    Index

    Properties

    connectionContext: {
        connectionId: string;
        eventType: "CONNECT" | "MESSAGE" | "DISCONNECT";
    }
    data?: any
    incomingMessage?: any