dynamic file display + tab state

This commit is contained in:
Ishaan Dey
2024-04-26 00:10:53 -04:00
parent 432133f64f
commit a49de2294d
7 changed files with 207 additions and 119 deletions

View File

@ -15,3 +15,20 @@ export type Sandbox = {
bucket: string | null
userId: string
}
export type R2Files = {
objects: R2FileData[]
truncated: boolean
delimitedPrefixes: any[]
}
export type R2FileData = {
storageClass: string
uploaded: string
checksums: any
httpEtag: string
etag: string
size: number
version: string
key: string
}