UNPKG
@scryfall/api-types
Version:
latest (1.0.0-alpha.4)
1.0.0-alpha.4
1.0.0-alpha.2
1.0.0-alpha.1
1.0.0-alpha.0
Type definitions for the Scryfall API
github.com/scryfall/api-types
scryfall/api-types
@scryfall/api-types
/
src
/
objects
/
Card
/
values
/
ManaType.ts
13 lines
(10 loc)
•
264 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
enum
ScryfallManaType
{
White
=
"W"
,
Blue
=
"U"
,
Black
=
"B"
,
Red
=
"R"
,
Green
=
"G"
,
Colorless
=
"C"
, }
export
type
ScryfallManaTypeLike
=
ScryfallManaType
|
`
${ScryfallManaType}
`
;
export
type
ScryfallManaTypes
=
ScryfallManaTypeLike
[];