UNPKG

card-games-typescript

Version:

Card deck and high or low game library built with TypeScript

9 lines (8 loc) 236 B
import { Player } from "../Player"; import { Bet } from "./bet"; import { HandHol } from "./hand"; export declare class PlayerHighLow extends Player { cards: HandHol; bet: Bet; constructor(name?: string, credit?: number); }