src/app/workspace-admin/files/files.interfaces.ts
Properties |
deleted |
deleted:
|
Type : string[]
|
did_not_exist |
did_not_exist:
|
Type : string[]
|
not_allowed |
not_allowed:
|
Type : string[]
|
was_used |
was_used:
|
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;
}