We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43417d7 commit 9e0465bCopy full SHA for 9e0465b
packages/toolkit/src/query/react/buildHooks.ts
@@ -1234,10 +1234,10 @@ type UseInfiniteQueryStateBaseResult<
1234
* Query is currently in "error" state.
1235
*/
1236
isError: false
1237
- hasNextPage: false
1238
- hasPreviousPage: false
1239
- isFetchingNextPage: false
1240
- isFetchingPreviousPage: false
+ hasNextPage: boolean
+ hasPreviousPage: boolean
+ isFetchingNextPage: boolean
+ isFetchingPreviousPage: boolean
1241
}
1242
1243
type UseInfiniteQueryStateDefaultResult<
0 commit comments