Sha256: 0999d0b384aa798ff9ff9ef46d4ae34df760132d4e10ebfb684df14b10c8f6f0
Contents?: true
Size: 670 Bytes
Versions: 12
Compression:
Stored size: 670 Bytes
Contents
import { BrowserLaunchArgumentOptions, PuppeteerNodeLaunchOptions } from './LaunchOptions.js'; import { Product } from '../common/Product.js'; /** * Describes a launcher - a class that is able to create and launch a browser instance. * @public */ export interface ProductLauncher { launch(object: PuppeteerNodeLaunchOptions): any; executablePath: (string?: any) => string; defaultArgs(object: BrowserLaunchArgumentOptions): any; product: Product; } /** * @internal */ export default function Launcher(projectRoot: string, preferredRevision: string, isPuppeteerCore: boolean, product?: string): ProductLauncher; //# sourceMappingURL=Launcher.d.ts.map
Version data entries
12 entries across 6 versions & 1 rubygems