Files
est-frame/node_modules/fork-ts-checker-webpack-plugin/lib/watch/CompilerWithWatchFileSystem.d.ts
2025-10-22 05:38:27 +00:00

7 lines
291 B
TypeScript
Executable File

import webpack from 'webpack';
import { WatchFileSystem } from './WatchFileSystem';
interface CompilerWithWatchFileSystem<TWatchFileSystem extends WatchFileSystem = WatchFileSystem> extends webpack.Compiler {
watchFileSystem?: TWatchFileSystem;
}
export { CompilerWithWatchFileSystem };