22 lines
466 B
TypeScript
22 lines
466 B
TypeScript
import { Tables } from "@/supabase/types"
|
|
|
|
export type DataListType =
|
|
| Tables<"collections">[]
|
|
| Tables<"chats">[]
|
|
| Tables<"presets">[]
|
|
| Tables<"prompts">[]
|
|
| Tables<"files">[]
|
|
| Tables<"assistants">[]
|
|
| Tables<"tools">[]
|
|
| Tables<"models">[]
|
|
|
|
export type DataItemType =
|
|
| Tables<"collections">
|
|
| Tables<"chats">
|
|
| Tables<"presets">
|
|
| Tables<"prompts">
|
|
| Tables<"files">
|
|
| Tables<"assistants">
|
|
| Tables<"tools">
|
|
| Tables<"models">
|