File size: 189 Bytes
5da61b4
76d4779
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { Message } from "./Message";

export interface SharedConversation {
	_id: string;

	hash: string;

	title: string;
	messages: Message[];

	createdAt: Date;
	updatedAt: Date;
}