UNPKG

221 BTypeScriptView Raw
1import { WritableAtom } from 'jotai';
2export declare const RESET: unique symbol;
3export declare function atomWithReset<Value>(initialValue: Value): WritableAtom<Value, typeof RESET | Value | ((prev: Value) => Value)>;