7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
|
|
import type { Compiler } from 'webpack';
|
||
|
|
export declare class CssChunkingPlugin {
|
||
|
|
private strict;
|
||
|
|
constructor(strict: boolean);
|
||
|
|
apply(compiler: Compiler): void;
|
||
|
|
}
|