source: trip-planner-front/node_modules/license-webpack-plugin/dist/WebpackCompiler.d.ts@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 645 bytes
Line 
1import { WebpackCompilation } from './WebpackCompilation';
2export interface WebpackCompiler {
3 hooks: {
4 thisCompilation: {
5 tap: (pluginName: string, handler: (compilation: WebpackCompilation) => void) => void;
6 };
7 compilation: {
8 tap: (pluginName: string, handler: (compilation: WebpackCompilation) => void) => void;
9 };
10 emit: {
11 tap: (pluginName: string, handler: (compilation: WebpackCompilation) => void) => void;
12 };
13 };
14 context: string;
15 inputFileSystem: any;
16 plugin?: (phase: string, callback: Function) => void;
17 isChild: () => boolean;
18}
Note: See TracBrowser for help on using the repository browser.