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.js 531B

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