UNPKG

scryfall

Version:

A simple wrapper around Scryfall's public API.

26 lines (25 loc) 330 B
/** * A text representation of the available Magic colors. */ export enum ScryfallColor { /** * White. */ W = "W", /** * Blue. */ U = "U", /** * Black. */ B = "B", /** * Red. */ R = "R", /** * Green. */ G = "G" }