Phase
The Phase type is an enum that represents the different phases in the game as literal strings.
Data Type
The data type for Phase
is defined here and is reproduced below for convenience:
export enum Phase {
DayOne = 'dayOne',
DeathReveal = 'deathReveal',
Discussion = 'discussion',
Voting = 'voting',
Defense = 'defense',
Judgement = 'judgement',
Night = 'night',
End = 'end',
}