12345678910111213141516171819202122 |
- /**
- * Reducer key for the feature.
- */
- export const REDUCER_KEY = 'features/participants-pane';
-
- /**
- * Enum of possible participant action triggers.
- */
- export const ActionTrigger = {
- Hover: 'ActionTrigger.Hover',
- Permanent: 'ActionTrigger.Permanent'
- };
-
- /**
- * Enum of possible participant media states.
- */
- export const MediaState = {
- Muted: 'MediaState.Muted',
- ForceMuted: 'MediaState.ForceMuted',
- Unmuted: 'MediaState.Unmuted',
- None: 'MediaState.None'
- };
|