( options: CreateInfiniteQueryOptions<TFnData, TVariables, TError, TPageParam> )
| 7 | import { ReactQuery } from './utils' |
| 8 | |
| 9 | export function createInfiniteQuery< |
| 10 | TFnData, |
| 11 | TVariables = void, |
| 12 | TError = CompatibleError, |
| 13 | TPageParam = number |
| 14 | >( |
| 15 | options: CreateInfiniteQueryOptions<TFnData, TVariables, TError, TPageParam> |
| 16 | ): InfiniteQueryHook<TFnData, TVariables, TError, TPageParam> { |
| 17 | return createBaseQuery(options, ReactQuery.useInfiniteQuery) |
| 18 | } |
no test coverage detected
searching dependent graphs…