0
0
Fork 0

Add an interface for the bracket history

This commit is contained in:
Oliver-Akins 2021-07-23 13:21:11 -06:00
parent 8355d68a64
commit 4f75202428

View file

@ -11,4 +11,9 @@ interface database {
users: { [index: string]: number }; users: { [index: string]: number };
}; };
} }
}
interface bracket_history {
quotes: string[];
votes: { [index: number]: number };
} }