plugin.d.ts 175 B

123456789
  1. import { Plugin } from 'webpack';
  2. interface WebpackPluginOptions {
  3. filename?: string;
  4. }
  5. export interface WebpackPlugin {
  6. new (options?: WebpackPluginOptions): Plugin;
  7. }