3 lines
145 B
TypeScript
3 lines
145 B
TypeScript
import type { PrimitiveAtom } from 'jotai/vanilla';
|
|
export declare function atomWithLazy<Value>(makeInitial: () => Value): PrimitiveAtom<Value>;
|