Files
csgowtf/src/types/MatchChat.ts
2022-03-26 17:45:14 +01:00

15 lines
277 B
TypeScript

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;
}