@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
16 lines (14 loc) • 395 B
TypeScript
/**
* Enum representing different output modes for video archives.
*/
declare enum ArchiveOutputMode {
/**
* Represents the composed output mode where all streams are mixed into one.
*/
COMPOSED = "composed",
/**
* Represents the individual output mode where each stream is recorded separately.
*/
INDIVIDUAL = "individual"
}
export { ArchiveOutputMode };