extension-develop
Version:
The develop step of Extension.js
14 lines (13 loc) • 443 B
TypeScript
import { type Compiler } from '@rspack/core';
import { type PluginInterface } from './reload-types';
export declare class ReloadPlugin {
static readonly name: string;
private readonly manifestPath;
private readonly browser;
private readonly port?;
private readonly stats?;
private readonly autoReload?;
private readonly instanceId?;
constructor(options: PluginInterface);
apply(compiler: Compiler): void;
}