(sessionId: string, token: string)
| 221 | onConnectionChange?: (connected: boolean) => void; |
| 222 | |
| 223 | constructor(sessionId: string, token: string) { |
| 224 | this.sessionId = sessionId; |
| 225 | this.token = token; |
| 226 | } |
| 227 | |
| 228 | connect(wsUrl: string): void { |
| 229 | this.wsUrl = wsUrl; |
nothing calls this directly
no outgoing calls
no test coverage detected