UNPKG

puppeteer-core

Version:

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

31 lines 821 B
/** * @license * Copyright 2017 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ import type { Protocol } from 'devtools-protocol'; /** * @internal */ export declare function createEvaluationError(details: Protocol.Runtime.ExceptionDetails): unknown; /** * @internal */ export declare function createClientError(details: Protocol.Runtime.ExceptionDetails): Error; /** * @internal */ export declare function valueFromRemoteObject(remoteObject: Protocol.Runtime.RemoteObject): any; /** * @internal */ export declare function addPageBinding(type: string, name: string, prefix: string): void; /** * @internal */ export declare const CDP_BINDING_PREFIX = "puppeteer_"; /** * @internal */ export declare function pageBindingInitString(type: string, name: string): string; //# sourceMappingURL=utils.d.ts.map