mirror of
https://github.com/supabase/supabase.git
synced 2026-06-05 20:32:43 +08:00
This PR runs `prettier` on the `examples` folder. Depends on https://github.com/supabase/supabase/pull/43849.
44 lines
895 B
TypeScript
44 lines
895 B
TypeScript
export type Json = string | number | boolean | null | { [key: string]: Json } | Json[]
|
|
|
|
export interface Database {
|
|
public: {
|
|
Tables: {
|
|
todos: {
|
|
Row: {
|
|
id: number
|
|
inserted_at: string
|
|
is_complete: boolean | null
|
|
task: string | null
|
|
user_id: string
|
|
}
|
|
Insert: {
|
|
id?: number
|
|
inserted_at?: string
|
|
is_complete?: boolean | null
|
|
task?: string | null
|
|
user_id: string
|
|
}
|
|
Update: {
|
|
id?: number
|
|
inserted_at?: string
|
|
is_complete?: boolean | null
|
|
task?: string | null
|
|
user_id?: string
|
|
}
|
|
}
|
|
}
|
|
Views: {
|
|
[_ in never]: never
|
|
}
|
|
Functions: {
|
|
[_ in never]: never
|
|
}
|
|
Enums: {
|
|
[_ in never]: never
|
|
}
|
|
CompositeTypes: {
|
|
[_ in never]: never
|
|
}
|
|
}
|
|
}
|