poker-odds-calc-test
Version:
15 lines (14 loc) • 381 B
TypeScript
import Card from "./Card";
import Table from "./Table";
export default class Player {
private seat;
private Table;
private hand;
constructor(seat: number, Table: Table, hand?: Array<string>);
setHand(hand: Array<string>): this;
getHand(): string;
inHand(): boolean;
getCards(): Card[];
isEmpty(): boolean;
getSeat(): number;
}