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.
1234567891011121314 |
- /**
- * Event triggered when participant's muted status changes.
- * @param {string} endpointId the track owner's identifier (MUC nickname)
- * @param {MediaType} mediaType "audio" or "video"
- * @param {boolean} isMuted the new muted state
- */
- export const PEER_MUTED_CHANGED = 'signaling.peerMuted';
-
- /**
- * Event triggered when participant's video type changes.
- * @param {string} endpointId the video owner's ID (MUC nickname)
- * @param {VideoType} videoType the new value
- */
- export const PEER_VIDEO_TYPE_CHANGED = 'signaling.peerVideoType';
|