()
| 656 | |
| 657 | // ── internals ─────────────────────────────────────────────────────────── |
| 658 | private _requireWs(): WsClient { |
| 659 | if (!this._ws) { |
| 660 | throw new Error('ws not connected — call `await client.connect()` first'); |
| 661 | } |
| 662 | return this._ws; |
| 663 | } |
| 664 | |
| 665 | private async _sendWsControl<T>( |
| 666 | type: string, |
no outgoing calls
no test coverage detected