gsaivinay's picture
Duplicate from matthoffner/starchat-ui
a28cd69
raw
history blame
132 Bytes
export interface FolderInterface {
id: string;
name: string;
type: FolderType;
}
export type FolderType = 'chat' | 'prompt';