UNPKG

295 BTypeScriptView Raw
1import { Scope } from '../core/atom';
2interface DevtoolsOptions {
3 scope?: Scope;
4 enabled?: boolean;
5}
6export declare function useAtomsDevtools(name: string, options?: DevtoolsOptions): void;
7export declare function useAtomsDevtools(name: string, scope?: Scope): void;
8export {};