0f8467f51d
* create few new types * Add missing api --------- Co-authored-by: olivier <olivier.bouillet@ifeelsmart.com> Co-authored-by: Krzysztof Moch <krzysmoch.programs@gmail.com>
8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
enum TextTrackType {
|
|
SRT = 'application/x-subrip',
|
|
TTML = 'application/ttml+xml',
|
|
VTT = 'text/vtt',
|
|
}
|
|
|
|
export default TextTrackType;
|