UNPKG

poker-variants-odds-calculator

Version:

Fastest and most accurate node module for calculating odds of poker games Texas Hold'em, Texas Shortdeck/Sixplus, Omaha, 5-Card Omaha and 6-Card.

20 lines (19 loc) 533 B
import Table from "./Table"; import Card from "./Card"; import Result from "./Result"; export default class Board { private table; private cards; private dead_cards; constructor(table: Table); private checkGameRules; setFlop(cards: Array<string>): this; dead(cards: string | Array<string>): this; getDeadCards(): Card[]; setTurn(card: string): this; setRiver(card: string): this; private setCard; getGame(): import("./Game").default; getCards(): Card[]; getResult(): Result; }