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