bitmovin-player-ui
Version:
Bitmovin Player UI Framework
20 lines (19 loc) • 693 B
TypeScript
import { SelectBox } from './SelectBox';
import { ListSelectorConfig } from '../lists/ListSelector';
import { UIInstanceManager } from '../../UIManager';
import { PlayerAPI } from 'bitmovin-player';
/**
* A select box providing a selection between 'auto' and the available video qualities.
*
* @category Components
*/
export declare class VideoQualitySelectBox extends SelectBox {
private hasAuto;
constructor(config?: ListSelectorConfig);
configure(player: PlayerAPI, uimanager: UIInstanceManager): void;
/**
* Returns true if the select box contains an 'auto' item for automatic quality selection mode.
* @return {boolean}
*/
hasAutoItem(): boolean;
}