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