UNPKG

@ant-design/tools

Version:
14 lines (13 loc) 468 B
import type { Compilation, Compiler, WebpackError } from 'webpack'; interface CleanUpStatsPluginOptions { MiniCSSExtractPlugin: boolean; tsLoader: boolean; } export default class CleanUpStatsPlugin { option: CleanUpStatsPluginOptions; constructor(option?: Partial<CleanUpStatsPluginOptions>); shouldPickStatChild(child: Compilation): boolean; shouldPickWarning(message: WebpackError): boolean; apply(compiler: Compiler): void; } export {};