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

@ -12,3 +12,8 @@ interface database {
};
}
}
interface bracket_history {
quotes: string[];
votes: { [index: number]: number };
}