mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-15 13:00:25 +02:00
resend mediasession on player repeat (#1472)
This commit is contained in:
@@ -11,6 +11,7 @@ export type EventMap = {
|
||||
MEDIA_NEXT: MediaNextEventPayload;
|
||||
MEDIA_PREV: MediaPrevEventPayload;
|
||||
PLAYER_PLAY: PlayerPlayEventPayload;
|
||||
PLAYER_REPEATED: PlayerRepeatedEventPayload;
|
||||
PLAYLIST_MOVE_DOWN: PlaylistMoveEventPayload;
|
||||
PLAYLIST_MOVE_TO_BOTTOM: PlaylistMoveEventPayload;
|
||||
PLAYLIST_MOVE_TO_TOP: PlaylistMoveEventPayload;
|
||||
@@ -46,6 +47,10 @@ export type PlayerPlayEventPayload = {
|
||||
index: number;
|
||||
};
|
||||
|
||||
export type PlayerRepeatedEventPayload = {
|
||||
index: number;
|
||||
};
|
||||
|
||||
export type PlaylistMoveEventPayload = {
|
||||
playlistId: string;
|
||||
sourceIds: string[];
|
||||
|
||||
Reference in New Issue
Block a user