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

10 lines (9 loc) 196 B
export interface UploadItemOptions { url?: string; method?: 'POST' | 'PUT' | 'PATCH'; file: File; fileAlias?: string; additionalParams?: { [key: string]: any; }; }