jotai
Version:
👻 Next gen state management that will spook you
5 lines • 304 B
TypeScript
import { QueryClient } from '@tanstack/query-core';
import { Getter } from 'jotai';
export declare type CreateQueryOptions<Options> = Options | ((get: Getter) => Options);
export declare type GetQueryClient = (get: Getter) => QueryClient;
declare type Awaited<T> = T extends Promise<infer V> ? V : T;