UNPKG

204 BTypeScriptView Raw
1import type { Atom, PrimitiveAtom } from 'jotai';
2declare type Read<Value> = Atom<Value>['read'];
3export declare function atomWithDefault<Value>(getDefault: Read<Value>): PrimitiveAtom<Value>;
4export {};