UNPKG

175 BTypeScriptView Raw
1import { Plugin } from 'webpack';
2
3interface WebpackPluginOptions {
4 filename?: string;
5}
6
7export interface WebpackPlugin {
8 new (options?: WebpackPluginOptions): Plugin;
9}