UNPKG

jotai

Version:

👻 Next gen state management that will spook you

4 lines (3 loc) • 208 B
import type { Draft } from 'immer'; import type { WritableAtom } from 'jotai'; export declare function atomWithImmer<Value>(initialValue: Value): WritableAtom<Value, Value | ((draft: Draft<Value>) => void)>;