tidal-hifi/src/constants/globalEvents.js
Mastermindzh ae51f9610c - The discord integration now doesn't send an update every 15 seconds it sends an update whenever the media info changes
- consolidated updating the media info changes with the status changes into a single global event
2021-04-19 23:08:19 +02:00

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;