Files
tidal-hifi/src/constants/globalEvents.js
2019-11-03 18:52:15 +01:00

16 lines
334 B
JavaScript

const globalEvents = {
play: "play",
pause: "pause",
playPause: "playPause",
next: "next",
previous: "previous",
updateInfo: "update-info",
hideSettings: "hideSettings",
showSettings: "showSettings",
updateStatus: "update-status",
storeChanged: "storeChanged",
error: "error",
};
module.exports = globalEvents;