JudgementVote
The Judgement Vote type simply represents the literal strings 'pardon'
or 'execute'
, indicating the vote of a player during the judgement phase of the game.
Data Type
The data type for JudgementVote
is defined here and is reproduced below for convenience:
export enum JudgementVote {
Pardon = 'pardon',
Execute = 'execute',
}