bitmovin-player-ui
Version:
Bitmovin Player UI Framework
13 lines (12 loc) • 454 B
TypeScript
import { UIInstanceManager } from '../../UIManager';
import { LabelConfig, Label } from '../labels/Label';
import { PlayerAPI } from 'bitmovin-player';
/**
* A label that displays the index of the currently playing ad out of the total number of ads.
*
* @category Labels
*/
export declare class AdCounterLabel extends Label<LabelConfig> {
constructor(config?: LabelConfig);
configure(player: PlayerAPI, uimanager: UIInstanceManager): void;
}