UNPKG

427 BTypeScriptView Raw
1import { WritableAtom } from 'jotai';
2export declare function atomWithReducer<Value, Action>(initialValue: Value, reducer: (value: Value, action?: Action) => Value): WritableAtom<Value, Action | undefined>;
3export declare function atomWithReducer<Value, Action>(initialValue: Value, reducer: (value: Value, action: Action) => Value): WritableAtom<Value, Action>;
4declare type Awaited<T> = T extends Promise<infer V> ? V : T;
\No newline at end of file