UNPKG

poker-ts

Version:

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

8 lines (7 loc) 183 B
import { Chips } from "types/chips"; export default class ChipRange { min: Chips; max: Chips; constructor(min: Chips, max: Chips); contains(amount: Chips): boolean; }