forked from CSGOWTF/csgowtf
15 lines
277 B
TypeScript
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;
|
|
}
|