UNPKG

scryfall-sdk

Version:

A Node.js SDK for https://scryfall.com/docs/api written in Typescript.

23 lines (22 loc) 829 B
import MagicQuerier from "../util/MagicQuerier"; declare class Catalog extends MagicQuerier { cardNames(): Promise<string[]>; artistNames(): Promise<string[]>; wordBank(): Promise<string[]>; creatureTypes(): Promise<string[]>; planeswalkerTypes(): Promise<string[]>; landTypes(): Promise<string[]>; artifactTypes(): Promise<string[]>; enchantmentTypes(): Promise<string[]>; spellTypes(): Promise<string[]>; powers(): Promise<string[]>; toughnesses(): Promise<string[]>; loyalties(): Promise<string[]>; watermarks(): Promise<string[]>; keywordAbilities(): Promise<string[]>; keywordActions(): Promise<string[]>; abilityWords(): Promise<string[]>; supertypes(): Promise<string[]>; } declare const _default: Catalog; export default _default;