UNPKG

@trendster-io/ng-uploader

Version:

A fully featured Angular file uploader that utilizes Angular's HttpClient internally, allows you to customize outgoing HTTP requests using the "Angular Way" (Interceptors), provides customizable concurrent queuing of uploads and a simple way to select fil

9 lines (8 loc) 235 B
import { HttpErrorResponse } from '@angular/common/http'; import { UploadItem } from '../upload-item.class'; export interface UploadItemEvent { item: UploadItem; res?: any; progress?: number; err?: HttpErrorResponse; }