tailscale-web - v0.1.13
    Preparing search index...

    Interface Response

    interface Response {
        headers: Record<string, string>;
        ok: boolean;
        status: number;
        statusText: string;
        arrayBuffer(): Promise<ArrayBuffer>;
        bytes(): Promise<Uint8Array<ArrayBufferLike>>;
        json(): Promise<unknown>;
        text(): Promise<string>;
    }
    Index

    Properties

    headers: Record<string, string>
    ok: boolean
    status: number
    statusText: string

    Methods

    • Returns Promise<ArrayBuffer>

    • Returns Promise<Uint8Array<ArrayBufferLike>>

    • Returns Promise<unknown>

    • Returns Promise<string>