File

projects/angular-material-fileupload/src/lib/mat-file-upload.type.ts

Index

Properties

Properties

isLoading
isLoading: boolean
Type : boolean
Optional
loaded
loaded: number
Type : number
Optional
progressPercentage
progressPercentage: number
Type : number
Optional
total
total: number
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;
}

result-matching ""

    No results matching ""