Files
dealplustech/dealplustech-astro/node_modules/astro/dist/content/watcher.d.ts
2026-03-02 12:35:14 +07:00

6 lines
206 B
TypeScript

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