source: frontend/node_modules/fork-ts-checker-webpack-plugin/lib/watch/InclusiveNodeWatchFileSystem.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 905 bytes
RevLine 
[9af201e]1import { ForkTsCheckerWebpackPluginState } from '../ForkTsCheckerWebpackPluginState';
2import { FSWatcher } from 'chokidar';
3import { Watcher, WatchFileSystem, WatchFileSystemOptions } from './WatchFileSystem';
4import { Compiler } from 'webpack';
5declare class InclusiveNodeWatchFileSystem implements WatchFileSystem {
6 private watchFileSystem;
7 private compiler;
8 private pluginState;
9 get watcher(): import("./WatchFileSystem").Watchpack;
10 readonly dirsWatchers: Map<string, FSWatcher | undefined>;
11 constructor(watchFileSystem: WatchFileSystem, compiler: Compiler, pluginState: ForkTsCheckerWebpackPluginState);
12 private paused;
13 watch(files: Iterable<string>, dirs: Iterable<string>, missing: Iterable<string>, startTime?: number, options?: Partial<WatchFileSystemOptions>, callback?: Function, callbackUndelayed?: Function): Watcher;
14}
15export { InclusiveNodeWatchFileSystem };
Note: See TracBrowser for help on using the repository browser.