From b193f851203d280a8b64814c7ee0177ecb1ff5ef Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 25 Dec 2019 16:03:19 -0500 Subject: [PATCH] [+] Add type and video fields to Artwork --- src/App.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.ts b/src/App.ts index 4f0a0d2..1793708 100644 --- a/src/App.ts +++ b/src/App.ts @@ -11,7 +11,6 @@ class Artwork { rawDate: string; title: string; - format: string; description: string; constructor(date: string, title: string, format: string, description: string) @@ -21,6 +20,8 @@ class Artwork this.format = format; this.description = description; } + type: string; + video: boolean; get date() {