Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 318 Bytes

puppeteer.httpresponse.headers.md

File metadata and controls

19 lines (13 loc) · 318 Bytes
sidebar_label
HTTPResponse.headers

HTTPResponse.headers() method

An object with HTTP headers associated with the response. All header names are lower-case.

Signature:

class HTTPResponse {
  abstract headers(): Record<string, string>;
}

Returns:

Record<string, string>