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.

constants.js 225B

1234567891011
  1. /**
  2. * An enumeration of the different virtual background types.
  3. *
  4. * @enum {string}
  5. */
  6. export const VIRTUAL_BACKGROUND_TYPE = {
  7. IMAGE: 'image',
  8. DESKTOP_SHARE: 'desktop-share',
  9. BLUR: 'blur',
  10. NONE: 'none'
  11. };