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

constants.js 521B

1234567891011121314151617181920212223242526272829
  1. // @flow
  2. /**
  3. * Fixed name of the video player fake participant.
  4. * @type {string}
  5. */
  6. export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
  7. /**
  8. * Fixed name of the youtube player fake participant.
  9. * @type {string}
  10. */
  11. export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
  12. /**
  13. * Shared video command.
  14. * @type {string}
  15. */
  16. export const SHARED_VIDEO = 'shared-video';
  17. /**
  18. * Available playback statuses
  19. */
  20. export const PLAYBACK_STATUSES = {
  21. PLAYING: 'playing',
  22. PAUSED: 'pause',
  23. STOPPED: 'stop'
  24. };