0
0
Fork 0

Remove IDs from the data objects.

This commit is contained in:
Oliver-Akins 2020-12-24 21:56:22 -07:00
parent 09c61f77bd
commit acd712e572

View file

@ -14,7 +14,6 @@ interface CreateGame {
}
interface GameCreated extends response {
game_code?: string;
id?: string;
}
@ -29,11 +28,8 @@ interface PastQuestions extends response {
interface JoinGame {
game_code: string;
name: string;
id?: string;
}
interface GameJoined extends response {
id?: string;
}
interface GameJoined extends response {}
interface NewHand {