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.
26 lines (25 loc) • 754 B
TypeScript
import StraightFlush from "./StraightFlush";
import Quads from "./Quads";
import FullHouse from "./FullHouse";
import Flush from "./Flush";
import Straight from "./Straight";
import ThreeOfAKind from "./ThreeOfAKind";
import TwoPairs from "./TwoPairs";
import OnePair from "./OnePair";
import HighCards from "./HighCards";
export { StraightFlush, Quads, FullHouse, Flush, Straight, ThreeOfAKind, TwoPairs, OnePair, HighCards };
export declare const type: {
ROYAL_FLUSH: string;
STRAIGHT_FLUSH: string;
QUADS: string;
FULL_HOUSE: string;
FLUSH: string;
STRAIGHT: string;
THREE_OF_A_KIND: string;
TWO_PAIRS: string;
ONE_PAIR: string;
HIGH_CARDS: string;
};
export declare const name: {
[key: string]: string;
};