2024-04-18 15:25:20 -04:00

17 lines
222 B
TypeScript

// DB Types
export type User = {
id: string
name: string
email: string
sandbox: Sandbox[]
}
export type Sandbox = {
id: string
name: string
type: "react" | "node"
bucket: string | null
userId: string
}