T / types /folder.ts
Niansuh's picture
Upload 250 files
af9dbf5 verified
export interface FolderInterface {
id: string;
name: string;
type: FolderType;
}
export type FolderType = 'chat' | 'prompt';