18 lines
238 B
TypeScript
Raw Normal View History

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