Chartbreaker
    Preparing search index...

    Interface Response_2

    This Fetch API interface represents the response to a request.

    interface Response_2 {
        headers: Headers_2;
        ok: boolean;
        redirected: boolean;
        status: number;
        statusText: string;
        trailer: Promise<Headers_2>;
        type: ResponseType_2;
        url: string;
        clone(): Response_2;
        json(): Promise<any>;
        text(): Promise<string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    headers: Headers_2
    ok: boolean
    redirected: boolean
    status: number
    statusText: string
    trailer: Promise<Headers_2>
    url: string

    Methods

    • Returns Promise<any>

    • Returns Promise<string>