(public config: QueryCacheConfig = {})
| 93 | #queries: QueryStore |
| 94 | |
| 95 | constructor(public config: QueryCacheConfig = {}) { |
| 96 | super() |
| 97 | this.#queries = new Map<string, Query>() |
| 98 | } |
| 99 | |
| 100 | build< |
| 101 | TQueryFnData = unknown, |
nothing calls this directly
no outgoing calls
no test coverage detected