CompilerWithWatchFileSystem.d.ts 291 Bytes Raw Blame History Permalink 1 2 3 4 5 6 import webpack from 'webpack'; import { WatchFileSystem } from './WatchFileSystem'; interface CompilerWithWatchFileSystem<TWatchFileSystem extends WatchFileSystem = WatchFileSystem> extends webpack.Compiler { watchFileSystem?: TWatchFileSystem; } export { CompilerWithWatchFileSystem };