[ Web Proxy ]
URL:
Viewing: https://angular.dev/api/common/http/HttpDownloadProgressEvent [Back]  [Original]

HttpDownloadProgressEvent Angular Skip to main content
menu
close
more_horiz
menuAPI
@angular/common/http

HttpDownloadProgressEvent

interface
stable

A download progress event.

Receiving raw progress events

On this page

    arrow_upward_alt Back to the top

    API

        
          interface HttpDownloadProgressEvent extends HttpProgressEvent {  type: HttpEventType.DownloadProgress;  partialText?: string | undefined;  override loaded: number;  override total?: number | undefined;}
        
        

    partialText

    string | undefined

    The partial response body as downloaded so far.

    Only present if the responseType was text.

    loaded

    number

    Number of bytes uploaded or downloaded.

    total

    number | undefined

    Total number of bytes to upload or download. Depending on the request or response, this may not be computable and thus may not be present.

    Jump to details

    Web Proxy Viewer  |  New URL  |  Original Page