Files
YTChatHub/shared/chat.ts
T

7 lines
102 B
TypeScript

export type ChatMessage = {
id: string;
author: string;
text: string;
publishedAt: string;
};