extension-develop
Version:
The develop step of Extension.js
10 lines (9 loc) • 363 B
TypeScript
import { type Compiler } from '@rspack/core';
import { type PluginInterface, type Manifest } from '../webpack-types';
export declare class BrowserSpecificFieldsPlugin {
private readonly browser;
private readonly manifestPath;
constructor(options: PluginInterface);
patchManifest(manifest: Manifest): string;
apply(compiler: Compiler): void;
}