Interface INetworkResponseInfo

interface INetworkResponseInfo {
    body: ArrayBuffer;
    headers: Record<string, string>;
    redirected: boolean;
    status: number;
    statusText: string;
    url: string;
}

Properties

body: ArrayBuffer
headers: Record<string, string>
redirected: boolean
status: number
statusText: string
url: string