UNPKG

deckbuilder

Version:

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

14 lines (10 loc) 225 B
'use strict' /** * Defines the properties that a card has. */ export default interface Card { // The id of the card. id: string; // Any other properties that suit your needs. [props: string]: any; }