UNPKG

puppeteer-core

Version:

A high-level API to control headless Chrome over the DevTools Protocol

16 lines 515 B
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: any): any; executablePath: () => string; defaultArgs(object: any): any; product: Product; } /** * @internal */ export default function Launcher(projectRoot: string, preferredRevision: string, isPuppeteerCore: boolean, product?: string): ProductLauncher; //# sourceMappingURL=Launcher.d.ts.map