Skip to main content
Version: 11.x

Type Alias: WsTransportState

WsTransportState = "connecting" | "open" | "reconnecting" | "closed"

Defined in: src/channel/transport/ws.ts:17

Connection state, as observable by a UI.

'reconnecting' is part of the union from the start even though this transport never enters it: reconnection lands in a later lot, and a state added later would be a public type change.