This commit is contained in:
2024-03-22 03:47:51 +05:30
parent 8bcf3d211e
commit 89819f6fe2
28440 changed files with 3211033 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
import { ForkTsCheckerWebpackPluginState } from '../ForkTsCheckerWebpackPluginState';
import { FSWatcher } from 'chokidar';
import { Watcher, WatchFileSystem, WatchFileSystemOptions } from './WatchFileSystem';
import { Compiler } from 'webpack';
declare class InclusiveNodeWatchFileSystem implements WatchFileSystem {
private watchFileSystem;
private compiler;
private pluginState;
get watcher(): import("./WatchFileSystem").Watchpack;
readonly dirsWatchers: Map<string, FSWatcher | undefined>;
constructor(watchFileSystem: WatchFileSystem, compiler: Compiler, pluginState: ForkTsCheckerWebpackPluginState);
private paused;
watch(files: Iterable<string>, dirs: Iterable<string>, missing: Iterable<string>, startTime?: number, options?: Partial<WatchFileSystemOptions>, callback?: Function, callbackUndelayed?: Function): Watcher;
}
export { InclusiveNodeWatchFileSystem };