Test/node_modules/jotai/vanilla/utils/atomWithLazy.d.ts
2026-04-09 22:54:00 +07:00

2 lines
145 B
TypeScript

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