UNPKG

puppeteer-core

Version:

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

35 lines 817 B
/** * @license * Copyright 2017 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ import './node-env-setup.js'; export * from './index.js'; import * as Puppeteer from './index.js'; /** * @public */ declare const puppeteer: Puppeteer.PuppeteerNode; export declare const /** * @public */ connect: (options: Puppeteer.ConnectOptions) => Promise<Puppeteer.Browser>, /** * @public */ defaultArgs: (options?: Puppeteer.LaunchOptions) => Promise<string[]>, /** * @public */ executablePath: { (channel: Puppeteer.ChromeReleaseChannel): Promise<string>; (options: Puppeteer.LaunchOptions): Promise<string>; (): Promise<string>; }, /** * @public */ launch: (options?: Puppeteer.LaunchOptions) => Promise<Puppeteer.Browser>; export default puppeteer; //# sourceMappingURL=puppeteer-core.d.ts.map