zibri
    Preparing search index...

    Type Alias WebsocketSendResult<B, Connection>

    WebsocketSendResult:
        | (B extends false ? void : WebsocketRequestWithConnection<Connection>)
        | Promise<
            B extends false ? void : WebsocketRequestWithConnection<Connection>,
        >

    The result of sending to a single connection.

    Type Parameters