mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
🔷 add PlayingFrom component to right sidebar
🔷 move upNext card into separate component 🔷 a lot of refactors
This commit is contained in:
+30
-2
@@ -1,4 +1,5 @@
|
||||
import { NotifType } from "./stores/enums";
|
||||
import { FromOptions } from "./composables/enums";
|
||||
import { NotifType } from "./composables/enums";
|
||||
|
||||
interface Track {
|
||||
trackid: string;
|
||||
@@ -62,4 +63,31 @@ interface Notif {
|
||||
type: NotifType;
|
||||
}
|
||||
|
||||
export { Track, Folder, AlbumInfo, Artist, Option, Playlist, Notif };
|
||||
interface fromFolder {
|
||||
type: FromOptions;
|
||||
path: string;
|
||||
name: string;
|
||||
}
|
||||
interface fromAlbum {
|
||||
type: FromOptions;
|
||||
name: string;
|
||||
albumartist: string;
|
||||
}
|
||||
interface fromPlaylist {
|
||||
type: FromOptions;
|
||||
name: string;
|
||||
playlistid: string;
|
||||
}
|
||||
|
||||
export {
|
||||
Track,
|
||||
Folder,
|
||||
AlbumInfo,
|
||||
Artist,
|
||||
Option,
|
||||
Playlist,
|
||||
Notif,
|
||||
fromFolder,
|
||||
fromAlbum,
|
||||
fromPlaylist,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user