output-sdk
    Preparing search index...

    Type Alias SerializedFetchResponse

    Represents a {Response} serialized to plain object

    type SerializedFetchResponse = {
        body: object | string;
        headers: Record<string, string>;
        ok: boolean;
        status: number;
        statusText: string;
        url: string;
    }
    Index

    Properties

    body: object | string

    Response body, either JSON, text or arrayBuffer converter to base64

    headers: Record<string, string>

    Object with response headers

    ok: boolean

    Flag indicating if the request succeeded

    status: number

    The response status code

    statusText: string

    The response status text

    url: string

    The response url