@winner-fed/bundler-webpack
Version:
@winner-fed/bundler-webpack
16 lines (15 loc) • 427 B
TypeScript
import { Compiler, ProgressPlugin } from '@winner-fed/bundler-webpack/compiled/webpack';
interface IOpts {
name?: string;
}
declare class WinProgressPlugin extends ProgressPlugin {
options: IOpts;
constructor(options?: IOpts);
apply(compiler: Compiler): void;
updateProgress(opts: {
percent: number;
message: string;
details: any[];
}): void;
}
export default WinProgressPlugin;