PromoCursed/node_modules/fork-ts-checker-webpack-plugin/lib/watch/CompilerWithWatchFileSystem.d.ts

7 lines
291 B
TypeScript
Raw Normal View History

2024-08-20 23:25:37 +04:00
import webpack from 'webpack';
import { WatchFileSystem } from './WatchFileSystem';
interface CompilerWithWatchFileSystem<TWatchFileSystem extends WatchFileSystem = WatchFileSystem> extends webpack.Compiler {
watchFileSystem?: TWatchFileSystem;
}
export { CompilerWithWatchFileSystem };