minor cleanup

This commit is contained in:
Nathaniel Tampus
2023-03-19 20:43:00 +08:00
parent 21494937c9
commit 96a262ec29
3 changed files with 6 additions and 13 deletions

2
types/index.d.ts vendored
View File

@@ -13,7 +13,7 @@ export interface Game {
export interface User {
id?: number | string; // string for guest IDs
name?: string;
name?: string | null;
email?: string;
connected?: boolean; // mainly for players, not spectators
}