/** * @packageDocumentation Dash.bundle * * This bundle contains necessary packages to support playback of DASH streams * with fMP4 segments. It also includes Adaptation with WISH ABR to enable adaptive * streaming. It extends API with `SourceApi`. * * * ### Dash.bundle used packages *
Dash.bundle
DashBundlePackage
CorePackage
StreamDataStructurePackage
StreamingPackage
EventBusPackage
PlayerApiPackage
CapabilitiesPackage
PlatformDetectionPackage
SegmentProcessingPackage
ContainerMp4Package
DataPackage
NetworkPackage
PlaybackTechnologyPackage
MediaStatePackage
VideoElementControllerPackage
DashManifestPackage
MsePlaybackPackage
NativePlaybackPackage
SourcePackage
SourcesApiPackage
AdaptationPackage
PlaybackPackage
PlaybackApiPackage
ViewModePackage
*/ import type { PlaybackApi } from '../packages/playback-api/Types'; import type { PlayerApi } from '../packages/player-api/Types'; import type { SourceApiBase, SourcesApi } from '../packages/sources-api/Types'; import type { ViewModeApi } from '../packages/view-mode/Types'; import type { EmptyObject } from '../Types'; import type { BundleExportNames, PlayerConfig } from './Types'; type MonolithExports = { [BundleExportNames.PlayerConfig]: PlayerConfig; }; type SourceApi = SourceApiBase & PlaybackApi & ViewModeApi; export type DashBundleApi = PlayerApi & SourcesApi; export declare const DashBundlePackage: (config: PlayerConfig) => import("../../framework-types/package-api/Package").Package; export declare function Player(config: PlayerConfig): import("../../framework-types/framework").WithBaseApi; export {}; export declare namespace Player { const version: string; } export declare const version: string;