extension-develop
Version:
The develop step of Extension.js
11 lines (10 loc) • 474 B
TypeScript
import { Compilation } from '@rspack/core';
import { BrowserConfig, DevOptions } from '../../../develop-lib/config-types';
interface CreateProfile {
browser: DevOptions['browser'];
userProfilePath: string | false | undefined;
configPreferences: BrowserConfig['preferences'];
instanceId?: string;
}
export declare function createProfile(compilation: Compilation, { browser, userProfilePath, configPreferences, instanceId }: CreateProfile): string;
export {};