Interface ResponseInit

interface ResponseInit {
    headers?: HeadersInit;
    status?: number;
    statusText?: string;
}

Properties

headers?: HeadersInit

Headers for the response.

status?: number

HTTP status code for the response.

statusText?: string

Status text for the response.