extension-develop
Version:
The develop step of Extension.js
14 lines (13 loc) • 470 B
TypeScript
import { Compilation } from '@rspack/core';
import { type PluginInterface } from '../../browsers-types';
export declare class RemoteFirefox {
private readonly options;
private client;
constructor(configOptions: PluginInterface);
private connectClient;
installAddons(compilation: Compilation): Promise<void>;
inspectSource(compilation: Compilation, opts: {
startingUrl?: string;
source?: string | boolean;
}): Promise<void>;
}