mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-05 16:37:09 +00:00
add missing TreeElement Object
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user