Skip to content

Instantly share code, notes, and snippets.

@bobbyg603
Last active May 11, 2022 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobbyg603/f1d5405973c4494e65eabdc6b0028263 to your computer and use it in GitHub Desktop.
Save bobbyg603/f1d5405973c4494e65eabdc6b0028263 to your computer and use it in GitHub Desktop.
File Uploads with Angular and Express
function isHttpProgressEvent(input: HttpEvent<unknown>): input is HttpUploadProgressEvent {
return input.type === HttpEventType.UploadProgress;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment