scryfall-client
Version:
A module for making requests to scryfall
5 lines (4 loc) • 367 B
TypeScript
import type Catalog from "../models/catalog";
type CatalogType = "card-names" | "artist-names" | "word-bank" | "creature-types" | "planeswalker-types" | "land-types" | "artifact-types" | "enchantment-types" | "spell-types" | "powers" | "toughnesses" | "loyalties" | "watermarks";
export declare function getCatalog(catalog: CatalogType): Promise<Catalog>;
export {};