//#region ../@mongez/atom/src/devtools.d.ts type EnableDevtoolsOptions = { /** Label shown in the extension UI. */name?: string; /** * Skip atoms whose key matches any of these patterns. Useful for * silencing high-frequency atoms (mouse position, scroll, etc.) that * would otherwise spam the timeline. */ ignore?: Array; /** * How often (ms) to look for newly-registered atoms. Apps that * register every atom at startup never need this; the default of * 1000ms is fine for hot-reload and code-splitting cases. * @default 1000 */ scanInterval?: number; }; /** * Connect every registered atom to the Redux DevTools extension. * * Returns a teardown function that disconnects and stops the registry * scan. Safe to call when the extension isn't installed — it returns * a no-op teardown without doing any work. */ declare function enableAtomDevtools(options?: EnableDevtoolsOptions): () => void; //#endregion export { EnableDevtoolsOptions, enableAtomDevtools }; //# sourceMappingURL=devtools.d.mts.map