inclusive-node-watch-file-system.d.ts 671 B

123456789101112131415
  1. import type { Compiler } from 'webpack';
  2. import type { ForkTsCheckerWebpackPluginState } from '../plugin-state';
  3. import type { WatchFileSystem } from './watch-file-system';
  4. declare class InclusiveNodeWatchFileSystem implements WatchFileSystem {
  5. private watchFileSystem;
  6. private compiler;
  7. private pluginState;
  8. get watcher(): import("./watch-file-system").Watchpack | undefined;
  9. private readonly dirsWatchers;
  10. private paused;
  11. private deletedFiles;
  12. constructor(watchFileSystem: WatchFileSystem, compiler: Compiler, pluginState: ForkTsCheckerWebpackPluginState);
  13. watch: WatchFileSystem['watch'];
  14. }
  15. export { InclusiveNodeWatchFileSystem };