您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

VideoType.ts 310B

1234567891011121314151617181920
  1. /**
  2. * Enumeration of the video types
  3. */
  4. export enum VideoType {
  5. /**
  6. * The camera video type.
  7. */
  8. CAMERA = 'camera',
  9. /**
  10. * The desktop video type.
  11. */
  12. DESKTOP = 'desktop',
  13. /**
  14. * The high fps desktop video type.
  15. */
  16. DESKTOP_HIGH_FPS = 'desktop_high_fps'
  17. }