WebpackPlugin.d.ts 132 B

1234
  1. import { WebpackCompiler } from './WebpackCompiler';
  2. export interface WebpackPlugin {
  3. apply(compiler: WebpackCompiler): void;
  4. }