mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-10 11:12:32 +00:00
12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
/**
|
|
* An enumeration of the different virtual background types.
|
|
*
|
|
* @enum {string}
|
|
*/
|
|
export const VIRTUAL_BACKGROUND_TYPE = {
|
|
IMAGE: 'image',
|
|
DESKTOP_SHARE: 'desktop-share',
|
|
BLUR: 'blur',
|
|
NONE: 'none'
|
|
};
|