kannon-client/libs/constants.js

25 lines
476 B
JavaScript
Raw Permalink Normal View History

2022-04-14 14:25:48 +02:00
module.exports = {
PING: 'ping',
PONG: 'pong',
2022-04-14 14:25:48 +02:00
READY: 'ready',
PLAYING: 'playing',
PAUSED: 'paused',
STOPPED: 'stopped',
ERROR: 'error',
STATECHANGE: 'statechange',
THRESHOLD: 'threshold',
HICCUP: 'hiccup',
PROGRESS: 'progress',
AUDIO_PLAY: 'audio:play',
AUDIO_RESUME: 'audio:resume',
AUDIO_PAUSE: 'audio:pause',
AUDIO_STOP: 'audio:stop',
AUDIO_STATE: 'audio:state',
2022-04-21 13:40:00 +02:00
2022-04-14 14:25:48 +02:00
EVENT_DELIMITER: '<<< kannon >>>'
}