mirror of
https://github.com/ivanfioravanti/chatbot-ollama.git
synced 2023-12-01 22:17:38 +03:00
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
export interface FolderInterface {
|
|
id: string;
|
|
name: string;
|
|
type: FolderType;
|
|
}
|
|
|
|
export type FolderType = 'chat' | 'prompt';
|