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

11 lines (10 loc) 263 B
export interface UploaderOptions { url?: string; method?: 'POST' | 'PUT' | 'PATCH'; autoUpload?: boolean; removeAfterUpload?: boolean; queueLimit?: number; concurrency?: number; maxFileSize?: number; allowedMimeTypes?: string[]; }