Merge pull request #23 from CptSpaceToaster/main

Add `1stEditionNormal` and `1stEditionHoloFoil` properties in TCGPlayer interface
This commit is contained in:
Tee Diang
2021-04-01 21:47:03 -04:00
committed by GitHub

View File

@ -5,6 +5,8 @@ export interface ITCGPlayer {
normal: IPrice | undefined;
holofoil: IPrice | undefined;
reverseHolofoil: IPrice | undefined;
'1stEditionNormal': IPrice | undefined;
'1stEditionHolofoil': IPrice | undefined;
}
}