add regulationMark property to card interface

This commit is contained in:
Tee
2021-12-16 20:51:59 -05:00
parent c4967fb899
commit 6cd9eab51b
2 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,7 @@ export class Card implements ICard {
flavorText?: string;
nationalPokedexNumbers?: number[];
legalities: ILegality;
regulationMark?: string;
images: ICardImage;
tcgplayer?: ITCGPlayer;
cardmarket?: ICardmarket;

View File

@ -33,6 +33,7 @@ export interface ICard {
flavorText?: string;
nationalPokedexNumbers?: number[];
legalities: ILegality;
regulationMark?: string;
images: ICardImage;
tcgplayer?: ITCGPlayer;
cardmarket?: ICardmarket;