Files
2026-07-13 12:49:58 +08:00

8 lines
132 B
TypeScript

export interface FolderInterface {
id: string;
name: string;
type: FolderType;
}
export type FolderType = 'chat' | 'prompt';