deckbuilder
Version:
A deck building and management tool any card based games in the browser or Node.
20 lines (19 loc) • 444 B
TypeScript
/**
* Defines the options and their default values for Deckbuilder.
*
* @version 1.0.0
*/
export default class Options {
/**
* The maximum amount of cards that the deck can contain.
*
* @property {number}
*
* @default Infinity
*/
maxCardCount: number;
/**
* @param {Object} options The initialiation parameters from Deckbuilder.
*/
constructor(options?: Object);
}