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

The result of sending to a single connection.

Type Parameters