mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
try adding playlists list to context menu - unsuccsessfully
This commit is contained in:
+9
-2
@@ -40,9 +40,16 @@ interface Option {
|
||||
type?: string;
|
||||
label?: string;
|
||||
action?: Function;
|
||||
children?: Option[] | false;
|
||||
children?: Option[] |Promise<Option[]>| false;
|
||||
icon?: string;
|
||||
critical?: Boolean;
|
||||
}
|
||||
|
||||
export { Track, Folder, AlbumInfo, Artist, Option };
|
||||
interface Playlist {
|
||||
playlistid: string;
|
||||
name: string;
|
||||
description?: string;
|
||||
image?: string;
|
||||
}
|
||||
|
||||
export { Track, Folder, AlbumInfo, Artist, Option, Playlist };
|
||||
|
||||
Reference in New Issue
Block a user