This is the archived documentation for Angular v5. Please visit angular.io to see documentation for the current version of Angular.

HttpDownloadProgressEvent

npm Package @angular/common
Module import { HttpDownloadProgressEvent } from '@angular/common/http';
Source common/http/src/response.ts

Interface Overview

      
      interface HttpDownloadProgressEvent extends HttpProgressEvent { 
  type: HttpEventType.DownloadProgress
  partialText?: string
}
    

Description

A download progress event.

Members


      
      partialText?: string
    

The partial response body as downloaded so far.

Only present if the responseType was text.