EmotiMate / types.ts
rahul036's picture
Upload 11 files
7a249ac verified
raw
history blame contribute delete
223 Bytes
export interface Message {
id: string;
text: string;
sender: 'user' | 'ai';
suggestions?: string[];
}
export interface Review {
id: string;
date: string;
lang: string;
rating: number;
comments: string;
}