5 lines
68 B
TypeScript

export interface ChatMessage {
author: string
content: string
}