interface VttSubtitleInternal {
    cues?: VTTCue[];
    id?: string;
    kind: string;
    label: string;
    nativeElement?: HTMLTrackElement;
    src: string | SubtitleSource;
    srclang: string;
    startTime?: TimeCode;
}

Properties

cues?: VTTCue[]
id?: string
kind: string
label: string
nativeElement?: HTMLTrackElement
src: string | SubtitleSource
srclang: string
startTime?: TimeCode