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.

constants.js 485B

12345678910111213141516171819202122
  1. /**
  2. * Reducer key for the feature.
  3. */
  4. export const REDUCER_KEY = 'features/participants-pane';
  5. /**
  6. * Enum of possible participant action triggers.
  7. */
  8. export const ActionTrigger = {
  9. Hover: 'ActionTrigger.Hover',
  10. Permanent: 'ActionTrigger.Permanent'
  11. };
  12. /**
  13. * Enum of possible participant media states.
  14. */
  15. export const MediaState = {
  16. Muted: 'MediaState.Muted',
  17. ForceMuted: 'MediaState.ForceMuted',
  18. Unmuted: 'MediaState.Unmuted',
  19. None: 'MediaState.None'
  20. };