8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
export interface Folder {
|
|
id: string;
|
|
name: string;
|
|
type: FolderType;
|
|
}
|
|
|
|
export type FolderType = 'chat' | 'prompt';
|