projects/angular-material-fileupload/src/lib/mat-file-upload.type.ts
Properties |
|
isLoading |
isLoading:
|
Type : boolean
|
Optional |
loaded |
loaded:
|
Type : number
|
Optional |
progressPercentage |
progressPercentage:
|
Type : number
|
Optional |
total |
total:
|
Type : number
|
Optional |
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;
}