updated MatchRounds type

This commit is contained in:
2022-03-25 20:18:55 +01:00
parent 1236c2ca2d
commit 5591e75c86

View File

@@ -1,7 +1,5 @@
export interface MatchRounds {
[key: string]: [
{
[key: string]: [equip: number, spent: number, bank: number];
}
];
[key: string]: {
[key: string]: number[];
};
}