UNPKG

230 BTypeScriptView Raw
1import { QueryClient } from 'react-query';
2import { Getter } from 'jotai';
3export declare type CreateQueryOptions<Options> = Options | ((get: Getter) => Options);
4export declare type GetQueryClient = (get: Getter) => QueryClient;