@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
24 lines (22 loc) • 462 B
text/typescript
/**
* Enum representing different captioning status.
*/
declare enum CaptionStatus {
/**
* Indicates that captioning has started.
*/
STARTED = "started",
/**
* Indicates that captioning has stopped.
*/
STOPPED = "stopped",
/**
* Indicates that captioning has been paused.
*/
PAUSED = "paused",
/**
* Indicates that captioning has failed.
*/
FAILED = "failed"
}
export { CaptionStatus };