(msg: Object)
| 1333 | } |
| 1334 | |
| 1335 | async broadcast(msg: Object): Promise<void> { |
| 1336 | const clients = await this.scope.clients.matchAll(); |
| 1337 | clients.forEach((client) => { |
| 1338 | client.postMessage(msg); |
| 1339 | }); |
| 1340 | } |
| 1341 | |
| 1342 | async debugState(): Promise<DebugState> { |
| 1343 | return { |
no test coverage detected