UNPKG

extension-develop

Version:
11 lines (10 loc) 474 B
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 {};