Spaces:
Paused
Paused
File size: 132 Bytes
3861128 |
1 2 3 4 5 6 7 8 |
export interface FolderInterface {
id: string;
name: string;
type: FolderType;
}
export type FolderType = 'chat' | 'prompt';
|