0
0
Fork 0

Set optional data points to be optional.

This commit is contained in:
Oliver-Akins 2021-01-01 20:11:53 -07:00
parent bc11738d9b
commit 05ec403ad1

View file

@ -46,10 +46,10 @@ interface JoinGame {
name: string;
}
interface GameJoined extends response {
players: player[];
players?: player[];
}
interface GameRejoined extends response {
players: player[];
players?: player[];
}