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;
|