import type { PokerRank } from './PokerRank'; import type { PokerSuit } from './PokerSuit'; export type PokerCard = `${PokerRank}${PokerSuit}`;