extension-develop
Version:
The develop step of Extension.js
13 lines (12 loc) • 403 B
TypeScript
import { Compiler } from '@rspack/core';
import { type PluginInterface } from '../webpack-types';
export declare class CompilationPlugin {
static readonly name: string;
readonly manifestPath: string;
readonly browser: PluginInterface['browser'];
readonly clean: boolean;
constructor(options: PluginInterface & {
clean: boolean;
});
apply(compiler: Compiler): void;
}