UNPKG

holdem-poker

Version:
10 lines (9 loc) 232 B
export declare const Suits: { [s: string]: string; }; export declare type Suit = keyof typeof Suits; export declare class Card { suit: Suit; value: number; constructor(suit: Suit | string, value: number); }