Skip to content

Instantly share code, notes, and snippets.

@bobbyg603
Created May 9, 2022 15:30
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/fc7db4bb58ae750989e55f19b2807684 to your computer and use it in GitHub Desktop.
Save bobbyg603/fc7db4bb58ae750989e55f19b2807684 to your computer and use it in GitHub Desktop.
File Uploads with Angular and Express
export interface FileUploadProgress {
id: string,
name: string,
progress: number,
failed: boolean,
done: boolean
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment