UNPKG

deckbuilder

Version:

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

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