UNPKG

react-query

Version:

Hooks for managing, caching and syncing asynchronous and remote data in React

9 lines (8 loc) 381 B
import { ContextOptions } from './types'; import { QueryKey } from '../core'; import { QueryFilters } from '../core/utils'; interface Options extends ContextOptions { } export declare function useIsFetching(filters?: QueryFilters, options?: Options): number; export declare function useIsFetching(queryKey?: QueryKey, filters?: QueryFilters, options?: Options): number; export {};