Files
documentation/node_modules/fork-ts-checker-webpack-plugin/lib/watch/CompilerWithWatchFileSystem.d.ts
2024-03-22 03:47:51 +05:30

7 lines
291 B
TypeScript

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