/** @group Enums */ declare enum DescriptorType { /** * The value of the Role tag in the manifest. * @see {@link DashDescriptor} */ DashRole = "dashRole", /** * The value of the Accessibility tag in the manifest. * @see {@link DashDescriptor} */ DashAccessibility = "dashAccessibility", /** * This is a comma-separated list of track characteristics, including content characteristics. * @see {@link HlsDescriptor} */ HlsCharacteristics = "hlsCharacteristics" } export default DescriptorType;