| 1234567891011121314 |
- import { WebpackCompilation } from './WebpackCompilation';
- export interface WebpackCompiler {
- hooks: {
- compilation: {
- tap: (pluginName: string, handler: (compilation: WebpackCompilation) => void) => void;
- };
- emit: {
- tap: (pluginName: string, handler: (compilation: WebpackCompilation) => void) => void;
- };
- };
- context: string;
- inputFileSystem: any;
- plugin?: (phase: string, callback: Function) => void;
- }
|