(client: QueryClient)
| 18 | |
| 19 | /** Sets a QueryClient on Svelte's context */ |
| 20 | export const setQueryClientContext = (client: QueryClient): void => { |
| 21 | setContext(_contextKey, client) |
| 22 | } |
| 23 | |
| 24 | const _isRestoringContextKey = Symbol('isRestoring') |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected