UNPKG

jotai

Version:

👻 Next gen state management that will spook you

8 lines (7 loc) • 285 B
import type { Atom, WritableAtom } from 'jotai/vanilla'; type DevtoolOptions = { name?: string; enabled?: boolean; }; export declare function useAtomDevtools<Value, Result>(anAtom: WritableAtom<Value, [Value], Result> | Atom<Value>, options?: DevtoolOptions): void; export {};