(
options: CreateInfiniteQueryOptions<
TQueryFnData,
TError,
TData,
TQueryKey,
TPageParam
>,
)
| 2 | import type { CreateInfiniteQueryOptions } from './types.js' |
| 3 | |
| 4 | export function infiniteQueryOptions< |
| 5 | TQueryFnData, |
| 6 | TError = DefaultError, |
| 7 | TData = InfiniteData<TQueryFnData>, |
| 8 | TQueryKey extends QueryKey = QueryKey, |
| 9 | TPageParam = unknown, |
| 10 | >( |
| 11 | options: CreateInfiniteQueryOptions< |
| 12 | TQueryFnData, |
| 13 | TError, |
| 14 | TData, |
| 15 | TQueryKey, |
| 16 | TPageParam |
| 17 | >, |
| 18 | ): CreateInfiniteQueryOptions< |
| 19 | TQueryFnData, |
| 20 | TError, |
| 21 | TData, |
| 22 | TQueryKey, |
| 23 | TPageParam |
| 24 | > { |
| 25 | return options |
| 26 | } |
no outgoing calls
no test coverage detected