UNPKG

cardation

Version:

fundation of card games, card model

13 lines (12 loc) 221 B
import Card from '../card/Card'; /** * Pattern interface */ interface IPattern { /** * Get the cards which form this pattern. * @returns {Card[]} */ getCards(): Card[]; } export default IPattern;