zzz / frontend /src /message.d.ts
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
256 Bytes
type Message = {
sender: "user" | "assistant";
content: string;
timestamp: string;
imageUrls?: string[];
type?: "thought" | "error" | "action";
success?: boolean;
pending?: boolean;
translationID?: string;
eventID?: number;
};