UNPKG

bitmovin-player-ui

Version:
14 lines (13 loc) 715 B
import { PlaybackToggleButton, PlaybackToggleButtonConfig } from './PlaybackToggleButton'; import { UIInstanceManager } from '../../UIManager'; import { PlayerAPI } from 'bitmovin-player'; export declare class SmallCenteredPlaybackToggleButton extends PlaybackToggleButton { constructor(config?: PlaybackToggleButtonConfig); configure(player: PlayerAPI, uimanager: UIInstanceManager): void; /** * Enables or disables the play state transition animations of the play button image. Can be used to suppress * animations. * @param {boolean} enabled true to enable the animations (default), false to disable them */ protected setTransitionAnimationsEnabled(enabled: boolean): void; }