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.ts 499B

1234567891011121314151617181920
  1. export const SETTINGS_TABS = {
  2. AUDIO: 'audio_tab',
  3. CALENDAR: 'calendar_tab',
  4. MORE: 'more_tab',
  5. MODERATOR: 'moderator-tab',
  6. NOTIFICATIONS: 'notifications_tab',
  7. PROFILE: 'profile_tab',
  8. SHORTCUTS: 'shortcuts_tab',
  9. VIDEO: 'video_tab'
  10. };
  11. /**
  12. * Default frame rate to be used for capturing screenshare.
  13. */
  14. export const SS_DEFAULT_FRAME_RATE = 5;
  15. /**
  16. * Supported framerates to be used for capturing screenshare.
  17. */
  18. export const SS_SUPPORTED_FRAMERATES = [ 5, 15, 30 ];