11 lines
582 B
TypeScript
11 lines
582 B
TypeScript
import type { Atom, ExtractAtomValue } from 'jotai/vanilla';
|
|
import { useStore } from './Provider';
|
|
type Options = Parameters<typeof useStore>[0] & {
|
|
/** @deprecated delay option is deprecated and will be removed in v3. https://github.com/pmndrs/jotai/pull/3264 */
|
|
delay?: number;
|
|
unstable_promiseStatus?: boolean;
|
|
};
|
|
export declare function useAtomValue<Value>(atom: Atom<Value>, options?: Options): Awaited<Value>;
|
|
export declare function useAtomValue<AtomType extends Atom<unknown>>(atom: AtomType, options?: Options): Awaited<ExtractAtomValue<AtomType>>;
|
|
export {};
|