UNPKG

cardation

Version:

fundation of card games, card model

13 lines (12 loc) 297 B
/** * All Suits should implement this interface. */ declare abstract class AbstractSuit { abstract getId(): string; /** * In customised classes, h d c s j should be avoided. */ abstract getShortName(): string; abstract getIcon(): string; } export default AbstractSuit;