9 lines
140 B
TypeScript

export type Chat = {
avatar: string;
name: string;
text: string;
time: number;
textCount: number;
color: string;
};