jmou/yakatak
git clone https://github.com/jmou/yakatak.git
git clone git@github.com:jmou/yakatak.git
Loading…
(top)/operation/src/types.ts
language: TypeScript
178 Bytes / 7 lines / 6 loc
History
View raw
export interface PileData {
  name: string;
  cards: { uid: string }[];
  pickedCardIndex: number;
}

export type CardLocation = readonly [pileIndex: number, cardIndex: number];