mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-04-21 20:48:28 +02:00
- consolidated updating the media info changes with the status changes into a single global event
15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
const globalEvents = {
|
|
play: "play",
|
|
pause: "pause",
|
|
playPause: "playPause",
|
|
next: "next",
|
|
previous: "previous",
|
|
updateInfo: "update-info",
|
|
hideSettings: "hideSettings",
|
|
showSettings: "showSettings",
|
|
storeChanged: "storeChanged",
|
|
error: "error",
|
|
};
|
|
|
|
module.exports = globalEvents;
|