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

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. };