import { type Protocol } from "https://deno.land/x/pptr@1.2.0/mod.ts";
const { ResponseReceivedExtraInfoEvent } = Protocol.Network;
Fired when additional information about a responseReceived event is available from the network stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for it, and responseReceivedExtraInfo may be fired before or after responseReceived.
Properties
requestId: RequestId
Request identifier. Used to match this information to another responseReceived event.
blockedCookies: BlockedSetCookieWithReason[]
A list of cookies which were not stored from the response along with the corresponding reasons for blocking. The cookies here may not be valid due to syntax errors, which are represented by the invalid cookie line string instead of a proper cookie.
headers: Headers
Raw response headers as they were received over the wire.