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.

SignalingEvents.js 543B

1234567891011121314
  1. /**
  2. * Event triggered when participant's muted status changes.
  3. * @param {string} endpointId the track owner's identifier (MUC nickname)
  4. * @param {MediaType} mediaType "audio" or "video"
  5. * @param {boolean} isMuted the new muted state
  6. */
  7. export const PEER_MUTED_CHANGED = 'signaling.peerMuted';
  8. /**
  9. * Event triggered when participant's video type changes.
  10. * @param {string} endpointId the video owner's ID (MUC nickname)
  11. * @param {VideoType} videoType the new value
  12. */
  13. export const PEER_VIDEO_TYPE_CHANGED = 'signaling.peerVideoType';