chatbot-mini / types /folder.ts
dolceschokolade's picture
Duplicate from matthoffner/chatbot-mini
fd760f6
Raw
History Blame Contribute Delete
132 Bytes
export interface FolderInterface {
id: string;
name: string;
type: FolderType;
}
export type FolderType = 'chat' | 'prompt';