add is_soundtrack and is_compilation flags to album objects

This commit is contained in:
geoffrey45
2022-06-07 16:47:44 +03:00
parent 4e1e1b8979
commit e75ac3e394
2 changed files with 22 additions and 4 deletions
+2
View File
@@ -31,6 +31,8 @@ interface AlbumInfo {
duration: number;
date: string;
image: string;
is_compilation: boolean;
is_soundtrack: boolean;
}
interface Artist {