Add artist field

This commit is contained in:
Max Isom 2020-03-13 12:17:45 -05:00
parent 17ba78f7b7
commit c446e0fd57
2 changed files with 24 additions and 5 deletions

View file

@ -7,6 +7,7 @@ export interface QueuedPlaylist {
export interface QueuedSong {
title: string;
artist: string;
url: string;
length: number;
playlist: QueuedPlaylist | null;