jotai
Version:
👻 Next gen state management that will spook you
9 lines • 362 B
TypeScript
import { Scope } from '../core/atom';
declare type DevtoolsOptions = {
scope?: Scope;
enabled?: boolean;
};
export declare function useAtomsDevtools(name: string, options?: DevtoolsOptions): void;
export declare function useAtomsDevtools(name: string, scope?: Scope): void;
export {};
declare type Awaited<T> = T extends Promise<infer V> ? V : T;