From 3b41b088539b9dcfbca595e8ab5749c6145becd6 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Tue, 24 Dec 2019 22:38:29 -0500 Subject: [PATCH] [+] Add width and height as fields --- src/App.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App.ts b/src/App.ts index faa7b34..dac1f93 100644 --- a/src/App.ts +++ b/src/App.ts @@ -13,6 +13,9 @@ class Artwork title: string; format: string; + width: number; + height: number; + constructor(date: string, title: string, format: string) { this.rawDate = date;