UNPKG

card-games-typescript

Version:

Card deck and high or low game library built with TypeScript

8 lines (7 loc) 209 B
export declare class Player { username?: string; credit: number; constructor(username?: string, credit?: number); setCredit(newCredit: number): void; setUsername(username: string): void; }