extension-develop
Version:
The develop step of Extension.js
11 lines (10 loc) • 389 B
TypeScript
import { Compiler } from '@rspack/core';
import { PluginInterface } from '../webpack-types';
import { DevOptions } from '../../develop-lib/config-types';
export declare class ExtensionPlugin {
static readonly name: string;
readonly manifestPath: string;
readonly browser: DevOptions['browser'];
constructor(options: PluginInterface);
apply(compiler: Compiler): void;
}