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.

MediaType.ts 253B

1234567891011121314151617
  1. export enum MediaType {
  2. /**
  3. * The application type (data over bridge channel).
  4. */
  5. APPLICATION = 'application',
  6. /**
  7. * The audio type.
  8. */
  9. AUDIO = 'audio',
  10. /**
  11. * The video type.
  12. */
  13. VIDEO = 'video'
  14. }