mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-22 10:26:33 +02:00
feat: added playlist from queue creation (#2210)
* feat: added playlist from queue creation - added functionality to create a playlist from queue - prefilling is done as an extra function to be api agnostic since navidrome native api for example does not offer a parameter for filling a playlist with songs on creation #2204 * fix: fixed wrong declaration
This commit is contained in:
@@ -45,10 +45,7 @@ interface Actions {
|
||||
getCurrentSong: () => QueueSong | undefined;
|
||||
getPlayerData: () => PlayerData;
|
||||
getQueue: (groupBy?: QueueGroupingProperty) => GroupedQueue;
|
||||
getQueueOrder: () => {
|
||||
groups: { count: number; name: string }[];
|
||||
items: QueueSong[];
|
||||
};
|
||||
getQueueOrder: () => GroupedQueue;
|
||||
increaseVolume: (value: number) => void;
|
||||
isFirstTrackInQueue: () => boolean;
|
||||
isLastTrackInQueue: () => boolean;
|
||||
|
||||
Reference in New Issue
Block a user