mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-06 00:47:09 +00:00
add missing TreeElement Object
This commit is contained in:
@@ -55,6 +55,13 @@ export type FolderElement = {
|
|||||||
size: number;
|
size: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type TreeElement = {
|
||||||
|
contents?: TreeElement[];
|
||||||
|
type: "file" | "directory";
|
||||||
|
name: string;
|
||||||
|
size: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export type Display = {
|
export type Display = {
|
||||||
id: string;
|
id: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user