Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
interface Protocol.Fetch.FulfillRequestRequest
import { type Protocol } from "https://deno.land/x/pptr@1.2.0/vendor/devtools-protocol/protocol.d.ts";
const { FulfillRequestRequest } = Protocol.Fetch;

Properties

requestId: RequestId

An id the client received in requestPaused event.

responseCode: integer

An HTTP response code.

optional
responseHeaders: HeaderEntry[]

Response headers.

optional
binaryResponseHeaders: string

Alternative way of specifying response headers as a \0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text.

optional
body: string

A response body.

optional
responsePhrase: string

A textual representation of responseCode. If absent, a standard phrase matching responseCode is used.