import DashDescriptor from './DashDescriptor'; import DescriptorType from './DescriptorType'; import HlsDescriptor from './HlsDescriptor'; import Track from './Track'; /** @group Interfaces */ export default interface TextTrack extends Track { /** * The human-readable title. */ label?: string; /** * The language code. */ language?: string; /** * The media type. */ mimeType?: string; /** * The additional metadata extracted from the manifest. */ descriptors: Record; }