0
0
Fork 0

Update GameDeleted type to add message.

This commit is contained in:
Oliver-Akins 2021-01-05 16:53:35 -07:00
parent 483e37df73
commit 3a9045ef87

View file

@ -29,7 +29,9 @@ interface GameCreated extends response {
interface DeleteGame {
game_code: string;
}
interface GameDeleted extends response {}
interface GameDeleted extends response {
message?: string
}
interface LeaveGame {