extension-develop
Version:
The develop step of Extension.js
10 lines (9 loc) • 359 B
TypeScript
import { type Compiler } from '@rspack/core';
import { type FilepathList, type PluginInterface } from '../../../webpack-types';
export declare class AddScripts {
readonly manifestPath: string;
readonly includeList: FilepathList;
readonly excludeList: FilepathList;
constructor(options: PluginInterface);
apply(compiler: Compiler): void;
}