FreeGpt / types /folder.ts
Daniton's picture
Duplicate from yxmnjxzx/chatbot-mini
5d4afba
raw
history blame
132 Bytes
export interface FolderInterface {
id: string;
name: string;
type: FolderType;
}
export type FolderType = 'chat' | 'prompt';