UNPKG

scryfall-client

Version:
12 lines (11 loc) 371 B
import SingularEntity from "./singular-entity"; import type Card from "./card"; import type List from "./list"; import type SetApiResponse from "../types/api/set"; interface MagicSet extends SetApiResponse { } declare class MagicSet extends SingularEntity { constructor(scryfallObject: SetApiResponse); getCards(): Promise<List<Card>>; } export default MagicSet;