Allow role to be undefined.

This commit is contained in:
Oliver-Akins 2020-09-29 16:34:31 -06:00
parent 814c291443
commit 549383b529

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

@ -1,6 +1,6 @@
interface player {
position: "chancellor"|"president"|undefined;
role: "liberal"|"fascist"|"hitler";
role: "liberal"|"fascist"|"hitler"|undefined;
host: boolean;
}