UNPKG

puppeteer-core

Version:

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

32 lines 1.12 kB
/** * @license * Copyright 2020 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ import type * as Bidi from 'chromium-bidi/lib/cjs/protocol/protocol.js'; import type { Protocol } from 'devtools-protocol'; import type { Frame } from '../api/Frame.js'; import { HTTPResponse, type RemoteAddress } from '../api/HTTPResponse.js'; import { SecurityDetails } from '../common/SecurityDetails.js'; import type { BidiHTTPRequest } from './HTTPRequest.js'; /** * @internal */ export declare class BidiHTTPResponse extends HTTPResponse { #private; static from(data: Bidi.Network.ResponseData, request: BidiHTTPRequest, cdpSupported: boolean): BidiHTTPResponse; private constructor(); remoteAddress(): RemoteAddress; url(): string; status(): number; statusText(): string; headers(): Record<string, string>; request(): BidiHTTPRequest; fromCache(): boolean; timing(): Protocol.Network.ResourceTiming | null; frame(): Frame | null; fromServiceWorker(): boolean; securityDetails(): SecurityDetails | null; content(): never; } //# sourceMappingURL=HTTPResponse.d.ts.map