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

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