UNPKG

jotai

Version:

👻 Next gen state management that will spook you

7 lines • 264 B
import { useStore } from 'jotai/react'; type Options = Parameters<typeof useStore>[0] & { enabled?: boolean; }; export declare const useAtomsDebugValue: (options?: Options) => void; export {}; declare type Awaited<T> = T extends Promise<infer V> ? V : T;