From 4f7520242838fbf745c82ef6b51738c1af7505c9 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 23 Jul 2021 13:21:11 -0600 Subject: [PATCH] Add an interface for the bracket history --- src/types/database.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/types/database.d.ts b/src/types/database.d.ts index 661f4c1..4b6646b 100644 --- a/src/types/database.d.ts +++ b/src/types/database.d.ts @@ -11,4 +11,9 @@ interface database { users: { [index: string]: number }; }; } +} + +interface bracket_history { + quotes: string[]; + votes: { [index: number]: number }; } \ No newline at end of file