File

src/app/workspace-admin/files/files.interfaces.ts

Index

Properties

Properties

deleted
deleted: string[]
Type : string[]
did_not_exist
did_not_exist: string[]
Type : string[]
not_allowed
not_allowed: string[]
Type : string[]
was_used
was_used: string[]
Type : string[]
export interface FileDeletionReport {
  deleted: string[];
  not_allowed: string[];
  did_not_exist: string[];
  was_used: string[];
}

export interface UploadReport {
  [filename: string]: {
    warning?: string[];
    error?: string[];
    info?: string[];
  }
}

export enum UploadStatus {
  ready,
  busy,
  ok,
  error
}

export interface UploadResponse {
  status: UploadStatus;
  progress: number;
  report: UploadReport;
}

results matching ""

    No results matching ""