Files
playground/Web/WebSocket/websocket/frontend/src/websockets/WebSocketConnectionStatus.ts
2025-09-28 14:55:09 -04:00

8 lines
128 B
TypeScript

export enum WebSocketConnectionStatus {
Connecting = 0,
Open = 1,
Closing = 2,
Closed = 3,
Error = 4
}