UNPKG

cardation

Version:

fundation of card games, card model

10 lines (9 loc) 252 B
import Card from './Card'; declare abstract class MarkerCard extends Card { /** * Convert the card to a colored string, which can be printed to the console. * @returns {string} */ getGraph(): string; } export default MarkerCard;