add "single" label if album is a single

This commit is contained in:
geoffrey45
2022-06-09 12:52:14 +03:00
parent e48dca4672
commit c1834778f1
5 changed files with 57 additions and 46 deletions
+3 -3
View File
@@ -1,5 +1,4 @@
import { FromOptions } from "./composables/enums";
import { NotifType } from "./composables/enums";
import { FromOptions, NotifType } from "./composables/enums";
interface Track {
trackid: string;
@@ -14,7 +13,7 @@ interface Track {
genre?: string;
image: string;
tracknumber?: number;
discnumber?: number;
disknumber?: number;
}
interface Folder {
@@ -33,6 +32,7 @@ interface AlbumInfo {
image: string;
is_compilation: boolean;
is_soundtrack: boolean;
is_single: boolean;
}
interface Artist {