(object: unknown)
| 28 | const fetchFn = async () => { |
| 29 | let cancelled = false |
| 30 | const addSignalProperty = (object: unknown) => { |
| 31 | addConsumeAwareSignal( |
| 32 | object, |
| 33 | () => context.signal, |
| 34 | () => (cancelled = true), |
| 35 | ) |
| 36 | } |
| 37 | |
| 38 | const queryFn = ensureQueryFn(context.options, context.fetchOptions) |
| 39 |
no test coverage detected