export interface PileData { name: string; cards: { uid: string }[]; pickedCardIndex: number; } export type CardLocation = readonly [pileIndex: number, cardIndex: number];