@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
26 lines • 737 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaptionStatus = void 0;
/**
* Enum representing different captioning status.
*/
var CaptionStatus;
(function (CaptionStatus) {
/**
* Indicates that captioning has started.
*/
CaptionStatus["STARTED"] = "started";
/**
* Indicates that captioning has stopped.
*/
CaptionStatus["STOPPED"] = "stopped";
/**
* Indicates that captioning has been paused.
*/
CaptionStatus["PAUSED"] = "paused";
/**
* Indicates that captioning has failed.
*/
CaptionStatus["FAILED"] = "failed";
})(CaptionStatus || (exports.CaptionStatus = CaptionStatus = {}));
//# sourceMappingURL=CaptionStatus.js.map