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.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. }