Add a policy type alias.

This commit is contained in:
Oliver-Akins 2020-10-01 20:29:09 -06:00
parent ea13b46c66
commit 64b5428136

2
src/types/db.d.ts vendored
View file

@ -6,6 +6,8 @@ interface player {
type game_states = "lobby";
type policy = "liberal" | "facist";
type players = {[key: string]: player};
interface database {