UNPKG

monopoly-shared-model

Version:

Shared model for Monopoly

9 lines (8 loc) 358 B
import { AbstractPropertyAction } from './AbstractPropertyAction'; export declare class CanBuyPropertyAction extends AbstractPropertyAction { private propertyName; private price; constructor(playerName: string, message: string, propertyIndex: number, propertyName: string, price: number); getPropertyName(): string; getPrice(): number; }