upadte: clean code + add next cloud

This commit is contained in:
Tom Boullay
2026-04-14 16:21:37 +02:00
parent 3adcf9d30e
commit 3a7a5e2eea
20 changed files with 663 additions and 131 deletions
+4
View File
@@ -9,6 +9,8 @@ export interface TextureFile {
file: File
}
export type DriveStatus = 'pending' | 'uploading' | 'success' | 'error' | 'skipped'
export interface FolderEntry {
folderName: string
modelFile: File
@@ -20,4 +22,6 @@ export interface FolderEntry {
modelUrl?: string
viewerOpen?: boolean
warnings: string[]
driveStatus?: DriveStatus
driveError?: string
}