mirror of
https://github.com/yusufipk/YTChatHub.git
synced 2026-09-11 10:56:17 +00:00
7 lines
102 B
TypeScript
7 lines
102 B
TypeScript
export type ChatMessage = {
|
|
id: string;
|
|
author: string;
|
|
text: string;
|
|
publishedAt: string;
|
|
};
|