UNPKG

poker-ts

Version:

Texas Hold 'Em Poker table model with convenience features for running real games.

11 lines (10 loc) 288 B
import Pot from './pot'; import { SeatArray } from 'types/seat-array'; export default class PotManager { private readonly _pots; private _aggregateFoldedBets; constructor(); pots(): Pot[]; betFolded(amount: any): void; collectBetsForm(players: SeatArray): void; }