CandidateAction
One legal or candidate action with an optional raise amount from candidateActionSet.
Shape
interface CandidateAction {
action: 'fold' | 'check' | 'call' | 'raise';
amount: number;
}
CandidateActionOne legal or candidate action with an optional raise amount from candidateActionSet.
interface CandidateAction {
action: 'fold' | 'check' | 'call' | 'raise';
amount: number;
}