mirror of
https://github.com/NoCrypt/migu.git
synced 2026-03-14 15:05:57 +00:00
16 lines
316 B
JavaScript
16 lines
316 B
JavaScript
export default class Event {
|
|
payload = null
|
|
type = ''
|
|
constructor (type, payload) {
|
|
this.type = type
|
|
this.payload = payload
|
|
}
|
|
}
|
|
|
|
export const EventTypes = {
|
|
SessionInitEvent: 'init',
|
|
MagnetLinkEvent: 'magnet',
|
|
MediaIndexEvent: 'index',
|
|
PlayerStateEvent: 'player',
|
|
MessageEvent: 'message'
|
|
}
|