add missing TreeElement Object

This commit is contained in:
E44
2025-11-08 21:47:54 +01:00
parent 6c6a2bdbee
commit e2dbbcc70d
+7
View File
@@ -55,6 +55,13 @@ export type FolderElement = {
size: number;
}
export type TreeElement = {
contents?: TreeElement[];
type: "file" | "directory";
name: string;
size: number;
}
export type Display = {
id: string;