()
| 58 | const queueChanged = createSignal() |
| 59 | |
| 60 | function notifySubscribers(): void { |
| 61 | snapshot = Object.freeze([...commandQueue]) |
| 62 | queueChanged.emit() |
| 63 | } |
| 64 | |
| 65 | // ============================================================================ |
| 66 | // useSyncExternalStore interface |
no test coverage detected