You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StreamEventTypes.js 384B

1234567891011121314
  1. const StreamEventTypes = {
  2. EVENT_TYPE_LOCAL_CREATED: 'stream.local_created',
  3. EVENT_TYPE_LOCAL_CHANGED: 'stream.local_changed',
  4. EVENT_TYPE_LOCAL_ENDED: 'stream.local_ended',
  5. EVENT_TYPE_REMOTE_CREATED: 'stream.remote_created',
  6. EVENT_TYPE_REMOTE_ENDED: 'stream.remote_ended',
  7. TRACK_MUTE_CHANGED: 'rtc.track_mute_changed'
  8. };
  9. module.exports = StreamEventTypes;