This commit is contained in:
2025-11-13 02:49:37 +01:00
parent 1e740ea024
commit 6fe7bbbbb5
7 changed files with 0 additions and 88 deletions
@@ -67,17 +67,6 @@ interface DocumentLike {
[key: string]: unknown;
}
interface FolderNode {
id: FolderId;
name?: string | null;
parentId?: FolderId | null;
children: FolderId[];
hasChildren?: boolean;
expanded?: boolean;
loaded?: boolean;
[key: string]: unknown;
}
interface FolderContentsEntry {
folder?: { id?: FolderId; name?: string | null } | null;
documents?: DocumentLike[];