diff --git a/types/react-query/index.d.ts b/types/react-query/index.d.ts index 1b17ce8efe..480fb84da6 100644 --- a/types/react-query/index.d.ts +++ b/types/react-query/index.d.ts @@ -289,6 +289,7 @@ export type PaginatedQueryResult = export interface InfiniteQueryResult extends QueryResultBase { data: TResult[]; isFetchingMore: boolean; + canFetchMore: boolean | undefined; fetchMore: (moreVariable?: TMoreVariable | false) => Promise | undefined; }