rest-vir - v2.2.0
    Preparing search index...

    Type Alias MockHostWebSocketMap<Api, Context>

    MockHostWebSocketMap: {
        [Path in keyof Api["webSockets"]]?: MockWebSocketListenerImplementations<
            Extract<Api["webSockets"][Path], WebSocketDefinition>,
            Context,
        >
    }

    Map of WebSocket path → mock listener implementations. Each key must exist in the api's webSockets record.

    Type Parameters