File

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

Index

Properties

Properties

fileAlias
fileAlias: string
Type : string
httpRequestHeaders
httpRequestHeaders: HttpHeaders | literal type
Type : HttpHeaders | literal type
httpRequestParams
httpRequestParams: HttpParams | literal type
Type : HttpParams | literal type
httpUrl
httpUrl: string
Type : string
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 ""