UNPKG

deckbuilder

Version:

A deck building and management tool any card based games in the browser or Node.

8 lines (7 loc) 157 B
import Card from './Card'; /** * Defines how cards can be dealt to players. */ export default interface Deal { [player: string]: Array<Card>; }