0
0
Fork 0

Add the team's answers into the datastore team object.

This commit is contained in:
Oliver-Akins 2021-01-06 16:24:35 -07:00
parent 48c0f995d1
commit b49662f00f

View file

@ -11,6 +11,7 @@ type datastoreObjectCard = string[];
interface datastoreTeam { interface datastoreTeam {
questions: datastoreQuestionCard[]; questions: datastoreQuestionCard[];
hand: datastoreQuestionCard[]; hand: datastoreQuestionCard[];
answers: string[];
id: team; id: team;
} }