UNPKG

260 BTypeScriptView Raw
1import { useStore } from 'jotai/react';
2import type { Atom } from 'jotai/vanilla';
3type Options = Parameters<typeof useStore>[0];
4export declare function useHydrateAtoms(values: Iterable<readonly [Atom<unknown>, unknown]>, options?: Options): void;
5export {};