2024-04-18 00:13:40 -04:00
|
|
|
// DB Types
|
|
|
|
|
|
|
|
export type User = {
|
|
|
|
id: string
|
|
|
|
name: string
|
|
|
|
email: string
|
2024-04-18 15:25:20 -04:00
|
|
|
sandbox: Sandbox[]
|
2024-04-18 00:13:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export type Sandbox = {
|
|
|
|
id: string
|
|
|
|
name: string
|
|
|
|
type: "react" | "node"
|
2024-04-21 22:55:49 -04:00
|
|
|
init: boolean
|
2024-04-18 00:13:40 -04:00
|
|
|
bucket: string | null
|
|
|
|
userId: string
|
|
|
|
}
|