UNPKG

dotup-ts-node-skills-game

Version:
11 lines (10 loc) 287 B
import { IButton } from '../Interfaces/IButton'; import { IPlayer } from '../Interfaces/IPlayer'; export declare class Player implements IPlayer { constructor(name?: string); name: string; age?: number; buttons?: IButton[]; score: number; currentRound: number; }