@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
18 lines • 563 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StreamMode = void 0;
/**
* Enum representing different stream modes for live streaming broadcasts.
*/
var StreamMode;
(function (StreamMode) {
/**
* Streams are selected automatically based on session rules.
*/
StreamMode["AUTO"] = "auto";
/**
* Streams are manually selected for inclusion in the broadcast.
*/
StreamMode["MANUAL"] = "manual";
})(StreamMode || (exports.StreamMode = StreamMode = {}));
//# sourceMappingURL=StreamMode.js.map