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.

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;