UNPKG

monopoly-shared-model

Version:

Shared model for Monopoly

11 lines (10 loc) 324 B
import { Serializable } from '../Serializable'; export declare class JailedPlayerThrow extends Serializable { private playerName; private nbTries; constructor(playerName: string); getNbTries(): number; getPlayerName(): string; incrementNbTries(): void; static emptyObject(): JailedPlayerThrow; }