| 29 | import { createSignal } from './signal.js' |
| 30 | |
| 31 | export class QueryGuard { |
| 32 | private _status: 'idle' | 'dispatching' | 'running' = 'idle' |
| 33 | private _generation = 0 |
| 34 | private _changed = createSignal() |
nothing calls this directly
no outgoing calls
no test coverage detected