@ant-design/tools
Version:
tools for ant design
14 lines (13 loc) • 468 B
TypeScript
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 {};