This commit is contained in:
2022-03-26 17:45:14 +01:00
parent 552188c8a9
commit 106ef97ede
7 changed files with 432 additions and 417 deletions

View File

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