()
| 344 | * Get the singleton WorkerClient instance. |
| 345 | */ |
| 346 | export function getWorkerClient(): WorkerClient { |
| 347 | if (!workerClientInstance) { |
| 348 | workerClientInstance = new WorkerClient(); |
| 349 | } |
| 350 | return workerClientInstance; |
| 351 | } |
| 352 | |
| 353 | /** |
| 354 | * Check if WebSocket callbacks are globally enabled and supported. |
no outgoing calls
no test coverage detected
searching dependent graphs…