Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

VideoType.js 298B

123456789101112131415161718
  1. /* global module */
  2. /**
  3. * Enumeration of the video types
  4. * @type {{CAMERA: string, DESKTOP: string}}
  5. */
  6. const VideoType = {
  7. /**
  8. * The camera video type.
  9. */
  10. CAMERA: 'camera',
  11. /**
  12. * The desktop video type.
  13. */
  14. DESKTOP: 'desktop'
  15. };
  16. module.exports = VideoType;