refactor: simplify snapshot file explorer

This commit is contained in:
Nicolas Meienberger
2025-11-04 14:57:22 +01:00
parent 11ca80a929
commit d1e46918ec
16 changed files with 309 additions and 258 deletions

View File

@@ -18,7 +18,7 @@ const NODE_PADDING_LEFT = 12;
export interface FileEntry {
name: string;
path: string;
type: "file" | "directory";
type: string;
size?: number;
modifiedAt?: number;
}