16 lines
201 B
TypeScript
16 lines
201 B
TypeScript
// DB Types
|
|
|
|
export type User = {
|
|
id: string
|
|
name: string
|
|
email: string
|
|
}
|
|
|
|
export type Sandbox = {
|
|
id: string
|
|
name: string
|
|
type: "react" | "node"
|
|
bucket: string | null
|
|
userId: string
|
|
}
|