CompilerWithWatchFileSystem.d.ts 291 B

123456
  1. import webpack from 'webpack';
  2. import { WatchFileSystem } from './WatchFileSystem';
  3. interface CompilerWithWatchFileSystem<TWatchFileSystem extends WatchFileSystem = WatchFileSystem> extends webpack.Compiler {
  4. watchFileSystem?: TWatchFileSystem;
  5. }
  6. export { CompilerWithWatchFileSystem };