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