UNPKG

@mhsalves/yugioh-fb-catalog

Version:

This catalog tools helps to retrieve data from Yugioh Forbidden Memories

6 lines (5 loc) 452 B
import type { TCardType, TMonsterType } from '../data/card-types'; export declare const getCardList: () => import("../data/card-types").ICard[]; export declare const getCard: (id: number) => import("../data/card-types").ICard | undefined; export declare const getCardsByType: (cardType: TCardType) => import("../data/card-types").ICard[]; export declare const getCardsByMonsterType: (monsterType: TMonsterType) => import("../data/card-types").ICard[];