(next: Partial<ClientManagerOptions>)
| 285 | } |
| 286 | |
| 287 | setOptions(next: Partial<ClientManagerOptions>): void { |
| 288 | this.options = { ...this.options, ...next }; |
| 289 | } |
| 290 | |
| 291 | getActiveClients(): ClientState[] { |
| 292 | return Array.from(this.#clients.values()); |
no outgoing calls
no test coverage detected