UNPKG

angular-material-fileupload

Version:
18 lines (17 loc) 453 B
import { HttpHeaders, HttpParams } from "@angular/common/http"; export interface IInput { httpUrl: string; httpRequestHeaders: HttpHeaders | { [header: string]: string | string[]; }; httpRequestParams: HttpParams | { [param: string]: string | string[]; }; fileAlias: string; } export interface IUploadProgress { isLoading?: boolean; progressPercentage?: number; loaded?: number; total?: number; }