From 9c6f67874804fab6416e607631db060dc0261f0a Mon Sep 17 00:00:00 2001 From: Miodec Date: Mon, 21 Feb 2022 14:34:28 +0100 Subject: [PATCH] fixed type --- frontend/src/scripts/types/types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/scripts/types/types.d.ts b/frontend/src/scripts/types/types.d.ts index c8d062041..69a600b51 100644 --- a/frontend/src/scripts/types/types.d.ts +++ b/frontend/src/scripts/types/types.d.ts @@ -354,7 +354,7 @@ declare namespace MonkeyTypes { interface QuoteRatings { [language: string]: { - [id: string | number]: any; // TODO find this + [id: number]: number; }; }