IOweb/node_modules/astro/dist/content/watcher.d.ts
2026-07-03 15:07:38 -05:00

5 lines
206 B
TypeScript

import type { FSWatcher } from 'vite';
export type WrappedWatcher = FSWatcher & {
removeAllTrackedListeners(): void;
};
export declare function createWatcherWrapper(watcher: FSWatcher): WrappedWatcher;