UNPKG

@scryfall/api-types

Version:

Type definitions for the Scryfall API

13 lines (10 loc) 264 B
enum ScryfallManaType { White = "W", Blue = "U", Black = "B", Red = "R", Green = "G", Colorless = "C", } export type ScryfallManaTypeLike = ScryfallManaType | `${ScryfallManaType}`; export type ScryfallManaTypes = ScryfallManaTypeLike[];