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

constants.ts 521B

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