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