the-forest/client/node_modules/fork-ts-checker-webpack-plugin/lib/watch/CompilerWithWatchFileSystem.d.ts

7 lines
291 B
TypeScript
Raw Normal View History

2024-09-17 20:35:18 -04:00
import webpack from 'webpack';
import { WatchFileSystem } from './WatchFileSystem';
interface CompilerWithWatchFileSystem<TWatchFileSystem extends WatchFileSystem = WatchFileSystem> extends webpack.Compiler {
watchFileSystem?: TWatchFileSystem;
}
export { CompilerWithWatchFileSystem };