chatbot / types /folder.ts
matthoffner's picture
Upload 242 files
15d9c3e
raw
history blame
132 Bytes
export interface FolderInterface {
id: string;
name: string;
type: FolderType;
}
export type FolderType = 'chat' | 'prompt';