(target: unknown)
| 57 | } |
| 58 | |
| 59 | export function clearReactiveStore(target: unknown): void { |
| 60 | const store = getReactiveStore(target) |
| 61 | if (!store) return |
| 62 | store.subscribers.clear() |
| 63 | } |
| 64 | |
| 65 | export function subscribeReactiveStore( |
| 66 | target: unknown, |
no test coverage detected