Files
homewebsite/node_modules/astro/dist/content/watcher.d.ts
2025-10-17 20:17:33 +00:00

6 lines
206 B
TypeScript

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