Files
Mckay Wrigley 34c79c0d66 Prompts (#229)
2023-03-27 09:38:56 -06:00

8 lines
123 B
TypeScript

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