UNPKG

monopoly-shared-model

Version:

Shared model for Monopoly

9 lines (8 loc) 308 B
import { AbstractAction } from './AbstractAction'; export declare class HasThrownDicesAction extends AbstractAction { private readonly dice1; private readonly dice2; constructor(playerName: string, message: string, dice1: number, dice2: number); getDice1(): number; getDice2(): number; }