puppeteer-core
Version:
A high-level API to control headless Chrome over the DevTools Protocol
30 lines • 705 B
TypeScript
/**
* @license
* Copyright 2017 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
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.BrowserLaunchArgumentOptions) => string[],
/**
* @public
*/
executablePath: (channel?: Puppeteer.ChromeReleaseChannel) => string,
/**
* @public
*/
launch: (options?: Puppeteer.PuppeteerLaunchOptions) => Promise<Puppeteer.Browser>;
export default puppeteer;
//# sourceMappingURL=puppeteer-core.d.ts.map