UNPKG

261 BTypeScriptView Raw
1export interface SuppressEntryChunksWebpackPluginOptions {
2 chunks: string[];
3}
4export declare class SuppressEntryChunksWebpackPlugin {
5 private options;
6 constructor(options: SuppressEntryChunksWebpackPluginOptions);
7 apply(compiler: any): void;
8}