starchat-ui / types /folder.ts
matthoffner's picture
Duplicate from matthoffner/chatbot
13095e0
raw
history blame contribute delete
No virus
132 Bytes
export interface FolderInterface {
id: string;
name: string;
type: FolderType;
}
export type FolderType = 'chat' | 'prompt';