simple-progress-webpack-plugin
Version:
A simple progress plugin for Webpack.
8 lines (7 loc) • 423 B
TypeScript
import webpack, { WebpackPluginInstance } from 'webpack';
import { SimpleProgressWebpackPluginOptions } from './simple-process-webpack-plugin.interfaces';
export declare class SimpleProgressWebpackPlugin implements WebpackPluginInstance {
private options;
constructor(options: Partial<SimpleProgressWebpackPluginOptions>);
apply(compiler: webpack.Compiler): ReturnType<WebpackPluginInstance['apply']>;
}