Use singular naming scheme for enums

This commit is contained in:
Tee
2021-03-14 17:04:42 -04:00
parent bfc4ad92b9
commit eb01211d09
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
export enum Parameters {
export enum Parameter {
Query = "q",
Page = "page",
PageSize = "pageSize",

View File

@ -1,4 +1,4 @@
export enum Rarities {
export enum Rarity {
AmazingRare = "Amazing Rare",
Common = "Common",
Legend = "LEGEND",

View File

@ -1,4 +1,4 @@
export enum Subtypes {
export enum Subtype {
Break = "BREAK",
Baby = "Baby",
Basic = "Basic",

View File

@ -1,4 +1,4 @@
export enum Supertypes {
export enum Supertype {
Energy = "Energy",
Pokemon = "Pokémon",
Trainer = "Trainer"

View File

@ -1,4 +1,4 @@
export enum Types {
export enum Type {
Colorless = "Colorless",
Darkness = "Darkness",
Dragon = "Dragon",