auto follow queue when autodj is triggered

This commit is contained in:
jeffvli
2025-12-28 14:34:38 -08:00
parent 0a54f7c44c
commit ffdef596ad
3 changed files with 39 additions and 0 deletions
+5
View File
@@ -1,6 +1,11 @@
import { LibraryItem, Song } from '/@/shared/types/domain-types';
export type AutoDJQueueAddedEventPayload = {
songCount: number;
};
export type EventMap = {
AUTODJ_QUEUE_ADDED: AutoDJQueueAddedEventPayload;
ITEM_LIST_REFRESH: ItemListRefreshEventPayload;
ITEM_LIST_UPDATE_ITEM: ItemListUpdateItemEventPayload;
MEDIA_NEXT: MediaNextEventPayload;