extension-develop
Version:
The develop step of Extension.js
11 lines (10 loc) • 351 B
TypeScript
import { type Compiler } from '@rspack/core';
import { type PluginInterface } from '../../reload-types';
declare class SetupReloadStrategy {
private readonly manifestPath;
private readonly browser;
private readonly port;
constructor(options: PluginInterface);
apply(compiler: Compiler): void;
}
export default SetupReloadStrategy;