From 5591e75c8648bd5d7526b8732bf05222f593ddf4 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Fri, 25 Mar 2022 20:18:55 +0100 Subject: [PATCH] updated MatchRounds type --- src/types/MatchRounds.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/types/MatchRounds.ts b/src/types/MatchRounds.ts index 90b79c1..44d7eb5 100644 --- a/src/types/MatchRounds.ts +++ b/src/types/MatchRounds.ts @@ -1,7 +1,5 @@ export interface MatchRounds { - [key: string]: [ - { - [key: string]: [equip: number, spent: number, bank: number]; - } - ]; + [key: string]: { + [key: string]: number[]; + }; }