UNPKG

cardation

Version:

fundation of card games, card model

14 lines (13 loc) 243 B
import Suit from '../suit/Suit'; /** * not in use * interface for all cards */ interface ICard { getCardId(): string; getPoint(): number; setPoint(): void; getRank(): number; getCardSuit(): Suit; } export default ICard;