UNPKG

jotai

Version:

👻 Next gen state management that will spook you

4 lines (3 loc) • 225 B
import type { WritableAtom } from 'jotai'; import { RESET } from './constants'; export declare function atomWithReset<Value>(initialValue: Value): WritableAtom<Value, typeof RESET | (Value | ((prev: Value) => Value)), void>;