UNPKG

playable

Version:

Video player based on HTML5Video

30 lines (24 loc) 562 B
type IInteractionIndicatorViewStyles = { iconContainer: string; icon: string; animatedIcon: string; playIcon: string; pauseIcon: string; seconds: string; hidden: string; }; interface IInteractionIndicator { getElement(): HTMLElement; showPause(): void; showPlay(): void; showRewind(): void; showForward(): void; showMute(): void; showIncreaseVolume(): void; showDecreaseVolume(): void; hideIcons(): void; show(): void; hide(): void; destroy(): void; } export { IInteractionIndicator, IInteractionIndicatorViewStyles };