extension-develop
Version:
The develop step of Extension.js
14 lines (13 loc) • 511 B
TypeScript
import { type Compiler } from '@rspack/core';
import { PluginInterface } from '../webpack-types';
import { type DevOptions } from '../../develop-lib/config-types';
export declare class CompatibilityPlugin {
static readonly name: string;
readonly manifestPath: string;
readonly browser: DevOptions['browser'];
readonly polyfill: DevOptions['polyfill'];
constructor(options: PluginInterface & {
polyfill: DevOptions['polyfill'];
});
apply(compiler: Compiler): Promise<void>;
}