您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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';