mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
configure watchdog to accept a list of dirs to watch
- fix PlayingFrom component not working with album - fix types issues on PlayingFrom component
This commit is contained in:
+5
-4
@@ -74,23 +74,24 @@ export interface Notif {
|
||||
}
|
||||
|
||||
export interface fromFolder {
|
||||
type: FromOptions;
|
||||
type: FromOptions.folder;
|
||||
path: string;
|
||||
name: string;
|
||||
}
|
||||
export interface fromAlbum {
|
||||
type: FromOptions;
|
||||
type: FromOptions.album;
|
||||
name: string;
|
||||
hash: string;
|
||||
albumartist: string;
|
||||
}
|
||||
export interface fromPlaylist {
|
||||
type: FromOptions;
|
||||
type: FromOptions.playlist;
|
||||
name: string;
|
||||
playlistid: string;
|
||||
}
|
||||
|
||||
export interface fromSearch {
|
||||
type: FromOptions;
|
||||
type: FromOptions.search;
|
||||
query: string;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user