mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-09-10 05:45:04 +02:00
16 lines
334 B
JavaScript
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;
|