katoikia-app/web-ui/web-react/node_modules/fork-ts-checker-webpack-plugin/lib/FilesWatcher.d.ts

14 lines
442 B
TypeScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
export declare class FilesWatcher {
private watchPaths;
private watchExtensions;
private watchers;
private listeners;
constructor(watchPaths: string[], watchExtensions: string[]);
isFileSupported(filePath: string): boolean;
watch(): void;
isWatchingFile(filePath: string): boolean;
isWatching(): boolean;
on(event: string, listener: Function): void;
off(event: string, listener: Function): void;
}