ts-cards
Version:
Cards but in typescript
9 lines (8 loc) • 457 B
TypeScript
export { Card } from './card';
export { Rank } from './rank';
export { two, three, four, five, six, seven, eight, nine, ten, jack, queen, king, ace } from './ranks';
export { Suit } from './suit';
export { clubs, hearts, diamonds, spades } from './suits';
export { Deck } from './deck';
export { StandardDeck, standardCardCompare, standardRankValues, PinochleDeck, pinochleCardCompare, pinochleRankValues, } from './decks';
export { Trick } from './trick';