import type { Player } from "@/types/Player"; export interface MatchChat { [key: string]: MatchChatItem[]; } export interface MatchChatItem { player?: Player; message: string; all_chat: boolean; tick: number; translated_from?: string; translated_to?: string; }