/** * @packageDocumentation BitmovinUi.package * * Loads and applies Bitmovin player UI js library and styles. Then it connects it * to the instance API. * * ### `BitmovinUi` Package Dependency Graph *
BitmovinUi
BitmovinV8Core
BitmovinV8StaticApi
Core
Source
BitmovinVideoElementUtils
*/ import type { EmptyObject } from '../../Types'; import { AdditionalPlayerExports } from './enums/PlayerExports'; import type { EventListenerAtom } from './event-handling/EventListenerAtom'; import type { BitmovinV8PlayerApi, PlayerConfig } from './types/Types'; type Dependencies = { [AdditionalPlayerExports.UserConfig]: PlayerConfig; [AdditionalPlayerExports.PlayerApi]: BitmovinV8PlayerApi; [AdditionalPlayerExports.EventListenerAtom]: EventListenerAtom; }; export declare const BitmovinPlayerUiPackage: import("../../../framework-types/package-api/Package").Package; export default BitmovinPlayerUiPackage;