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