[+] Add type and video fields to Artwork

This commit is contained in:
Hykilpikonna
2019-12-25 16:03:19 -05:00
parent 16c2acea02
commit b193f85120
+2 -1
View File
@@ -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()
{