export default interface ChatMessage {
    from_player: boolean;
    content: string;
    timestamp: string;
}
