38 lines
904 B
TypeScript
38 lines
904 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2017 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
export * from 'puppeteer-core';
|
|
import { PuppeteerNode } from 'puppeteer-core';
|
|
/**
|
|
* @public
|
|
*/
|
|
declare const puppeteer: PuppeteerNode;
|
|
export declare const
|
|
/**
|
|
* @public
|
|
*/
|
|
connect: (options: import("puppeteer-core").ConnectOptions) => Promise<import("puppeteer-core").Browser>,
|
|
/**
|
|
* @public
|
|
*/
|
|
defaultArgs: (options?: import("puppeteer-core").LaunchOptions) => string[],
|
|
/**
|
|
* @public
|
|
*/
|
|
executablePath: {
|
|
(channel: import("puppeteer-core").ChromeReleaseChannel): string;
|
|
(options: import("puppeteer-core").LaunchOptions): string;
|
|
(): string;
|
|
},
|
|
/**
|
|
* @public
|
|
*/
|
|
launch: (options?: import("puppeteer-core").LaunchOptions) => Promise<import("puppeteer-core").Browser>,
|
|
/**
|
|
* @public
|
|
*/
|
|
trimCache: () => Promise<void>;
|
|
export default puppeteer;
|
|
//# sourceMappingURL=puppeteer.d.ts.map
|