From de3a8ea61e28dd66a2f55f45b963216ea35e6143 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Thu, 1 Oct 2020 22:17:18 -0600 Subject: [PATCH] Update type for status. --- src/utils/Game.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Game.ts b/src/utils/Game.ts index ce2fba8..3590f89 100644 --- a/src/utils/Game.ts +++ b/src/utils/Game.ts @@ -1,6 +1,6 @@ class Game { readonly code: string; - public status: string; + public status: game_states; #players: players; public constructor(code: string, host: string) {