UNPKG

288 BTypeScriptView Raw
1import { QueryClient } from '@tanstack/query-core';
2import { Getter } from 'jotai';
3export type CreateQueryOptions<Options> = Options | ((get: Getter) => Options);
4export type GetQueryClient = (get: Getter) => QueryClient;
5declare type Awaited<T> = T extends Promise<infer V> ? V : T;
\No newline at end of file