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 278B

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