7 lines
291 B
TypeScript
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 };
|