From 380d2e7c97b85f31a9fc6f3ba612088b7300bfc4 Mon Sep 17 00:00:00 2001 From: CptSpaceToaster Date: Fri, 26 Mar 2021 12:36:18 -0400 Subject: [PATCH] Add missing properties, but their names are weird They're like this in the JSON :( --- src/interfaces/tcgplayer.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/interfaces/tcgplayer.ts b/src/interfaces/tcgplayer.ts index ef4f586..8a26b03 100644 --- a/src/interfaces/tcgplayer.ts +++ b/src/interfaces/tcgplayer.ts @@ -5,6 +5,8 @@ export interface ITCGPlayer { normal: IPrice | undefined; holofoil: IPrice | undefined; reverseHolofoil: IPrice | undefined; + '1stEditionNormal': IPrice | undefined; + '1stEditionHolofoil': IPrice | undefined; } }