modified lib-jitsi-meet dev repo
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.ts 790B

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