()
| 96 | } |
| 97 | |
| 98 | unmount(): void { |
| 99 | this.#mountCount-- |
| 100 | if (this.#mountCount !== 0) return |
| 101 | |
| 102 | this.#unsubscribeFocus?.() |
| 103 | this.#unsubscribeFocus = undefined |
| 104 | |
| 105 | this.#unsubscribeOnline?.() |
| 106 | this.#unsubscribeOnline = undefined |
| 107 | } |
| 108 | |
| 109 | isFetching<TQueryFilters extends QueryFilters<any> = QueryFilters>( |
| 110 | filters?: TQueryFilters, |
no outgoing calls