Skip to content

Instantly share code, notes, and snippets.

@senoritadeveloper01
Created April 24, 2022 17:28
Show Gist options
  • Save senoritadeveloper01/5316ff4a1e2036392060e57b406344ca to your computer and use it in GitHub Desktop.
Save senoritadeveloper01/5316ff4a1e2036392060e57b406344ca to your computer and use it in GitHub Desktop.
File Upload Process Http Event Types (Angular)
isHttpProgressEvent(event: HttpEvent<unknown>): event is HttpProgressEvent {
return (
event.type === HttpEventType.DownloadProgress ||
event.type === HttpEventType.UploadProgress
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment