Files
infocom-systems-design/node_modules/jotai/vanilla/utils/atomWithLazy.d.ts
2025-10-03 22:27:28 +03:00

3 lines
145 B
TypeScript

import type { PrimitiveAtom } from 'jotai/vanilla';
export declare function atomWithLazy<Value>(makeInitial: () => Value): PrimitiveAtom<Value>;