Package version:

Interface HttpResponse

The properties on an HTTP response which will always be present.

interface HttpResponse {
    headers: HttpHeadersLike;
    request: WebResourceLike;
    status: number;
}

Properties

The HTTP response headers.

The raw request

status: number

The HTTP response status (e.g. 200)

Generated using TypeDoc