extension-develop
Version:
The develop step of Extension.js
10 lines (9 loc) • 321 B
TypeScript
import { type Compiler } from '@rspack/core';
import { PluginInterface } from '../webpack-types';
export declare class CssPlugin {
static readonly name: string;
readonly manifestPath: string;
constructor(options: PluginInterface);
private configureOptions;
apply(compiler: Compiler): Promise<void>;
}