extension-develop
Version:
The develop step of Extension.js
14 lines (13 loc) • 504 B
TypeScript
import { type Compiler } from '@rspack/core';
import { type FilepathList, type PluginInterface } from '../../../webpack-types';
export declare class ThrowIfRecompileIsNeeded {
readonly manifestPath: string;
readonly includeList?: FilepathList;
readonly excludeList?: FilepathList;
readonly browser?: string;
private initialHtmlAssets;
constructor(options: PluginInterface);
private hasEntriesChanged;
private storeInitialHtmlAssets;
apply(compiler: Compiler): void;
}