@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
24 lines (22 loc) • 536 B
text/typescript
/**
* Enum representing different resolutions for an experience composer.
*/
declare enum ExperienceComposerResolution {
/**
* Standard definition landscape resolution.
*/
SD_LANDSCAPE = "640x480",
/**
* Standard definition portrait resolution.
*/
SD_PORTRAIT = "480x640",
/**
* High definition landscape resolution.
*/
HD_LANDSCAPE = "1280x720",
/**
* High definition portrait resolution.
*/
HD_PORTRAIT = "720x1280"
}
export { ExperienceComposerResolution };