Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Projekte/WebDesktop/WebDesktopFrontend/src/app/entitys/files.ts
2022-09-04 12:45:01 +02:00

36 lines
455 B
TypeScript

export interface DirectoryContent {
files: string[];
directories: string[];
}
export interface DirectoryInformation {
name: string;
created: Date;
size: number;
}
export interface FileInformation {
name: string;
created: Date;
size: number;
}
export enum FileType {
FILE,
IMAGE,
VIDEO,
AUDIO,
COMPRESSED,
DISK,
DATABASE,
DATA,
EMAIL,
EXECUTABLE,
FONT,
INTERNET,
PRESENTATION,
SPREADSHEET,
SYSTEM,
WORD
}