UNPKG

@luban-cli/cli-lib-service

Version:
14 lines (13 loc) 406 B
import { Compiler } from "webpack"; interface CleanUpStatsPluginOptions { MiniCSSExtractPlugin?: boolean; tsLoader?: boolean; } declare class CleanUpStatsPlugin { private option; constructor(option?: CleanUpStatsPluginOptions); shouldPickStatChild(child: any): boolean; shouldPickWarning(message: any): boolean; apply(compiler: Compiler): void; } export { CleanUpStatsPlugin };