UNPKG

196 BTypeScriptView Raw
1import type { WritableAtom } from 'jotai';
2import type { SetAtom } from '../core/atom';
3export declare function useUpdateAtom<Value, Update>(anAtom: WritableAtom<Value, Update>): SetAtom<Update>;