UNPKG

monopoly-shared-model

Version:

Shared model for Monopoly

11 lines (10 loc) 310 B
import { Serializable } from '../Serializable'; export declare class DiceThrow extends Serializable { private playerName; private dice1; private dice2; constructor(playerName: string, dice1: number, dice2: number); getPlayerName(): string; getDice1(): number; getDice2(): number; }