added functionality to favorite a song. fixes #323

This commit is contained in:
2024-01-07 14:58:49 +01:00
parent 1d19857977
commit 5e82c18d8a
7 changed files with 25 additions and 0 deletions

View File

@@ -10,4 +10,5 @@ export interface MediaInfo {
current: string;
duration: string;
image: string;
favorite: boolean;
}

View File

@@ -9,4 +9,5 @@ export interface Options {
"app-name": string;
image: string;
icon: string;
favorite: boolean;
}