zibri
    Preparing search index...

    Type Alias WebsocketSendToMultipleResult<B, Connection>

    WebsocketSendToMultipleResult:
        | (
            B extends false ? void : WebsocketRequestWithConnection<Connection>[]
        )
        | Promise<
            B extends false ? void : WebsocketRequestWithConnection<Connection>[],
        >

    The result of sending to multiple connections.

    Type Parameters