interface NetworkResponse {
    body?: unknown;
    headers: Record<string, string>;
    responseType?: NetworkResponseType;
    responseUrl: string;
}

Properties

body?: unknown
headers: Record<string, string>
responseType?: NetworkResponseType
responseUrl: string