UNPKG

214 BTypeScriptView Raw
1import { WritableAtom } from 'jotai';
2import { RESET } from './atomWithReset';
3export declare function useResetAtom<Value>(anAtom: WritableAtom<Value, typeof RESET>): (update?: unknown) => void | Promise<void>;