chat-ui / src /lib /types /SharedConversation.ts
victor's picture
victor HF staff
Add settings (#134)
82fcab7 unverified
raw
history blame
No virus
219 Bytes
import type { Message } from "./Message";
import type { Timestamps } from "./Timestamps";
export interface SharedConversation extends Timestamps {
_id: string;
hash: string;
title: string;
messages: Message[];
}