bug fixes file deletions and more

This commit is contained in:
Zoe
2024-09-09 01:35:33 -05:00
parent 86ef860568
commit 70a9bcd904
14 changed files with 325 additions and 51 deletions

View File

@@ -2,5 +2,6 @@ export interface File {
name: string,
is_dir: boolean,
size: number,
last_modified: string
last_modified: string,
toggled: string,
}

View File

@@ -5,7 +5,8 @@ export interface User {
plan: {
id: number,
max_storage: number
}
},
usage: number,
}
export interface FileUpload {