您最多选择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;