poker-odds-calc
Version:
Fastest and most accurate node module for calculating odds of poker games Texas Hold'em, Texas Shortdeck/Sixplus and Omaha.
26 lines (25 loc) • 775 B
TypeScript
import StraightFlush from "./StraightFlush";
import Quads from "./Quads";
import FullHouse from "./FullHouse";
import Flush from "./Flush";
import Straight from "./Straight";
import TreeOfAKind from "./TreeOfAKind";
import TwoPairs from "./TwoPairs";
import OnePair from "./OnePair";
import HighCards from "./HighCards";
export { StraightFlush, Quads, FullHouse, Flush, Straight, TreeOfAKind, TwoPairs, OnePair, HighCards };
export declare const type: {
ROYAL_FLUSH: string;
STRAIGHT_FLUSH: string;
QUADS: string;
FULL_HOUSE: string;
FLUSH: string;
STRAIGHT: string;
TREE_OF_A_KIND: string;
TWO_PAIRS: string;
ONE_PAIR: string;
HIGH_CARDS: string;
};
export declare const name: {
[key: string]: string;
};