/** * @packageDocumentation PlaybackTechnology.package * * Provides the PlaybackTechnologyComponent for managing and resolving playback technologies. * * Technologies register themselves with the component, declaring: * - Their type (manifest-parsing, segment-loading, presentation) * - What other types they depend on * - What source types they handle * - Whether they're supported in the current environment * * The component auto-resolves valid technology chains when technologies are added. * * Example chain: [manifest-parsing (dash)] -> [presentation (mse)] * Example standalone: [presentation (native)] * * ### `PlaybackTechnology` Package Dependency Graph *
PlaybackTechnology
Source
*/ import type { EmptyObject } from '../../Types'; import type { PlaybackTechnologyDependencies, PlaybackTechnologyExports } from './Types'; export declare const PlaybackTechnologyPackage: import("../../../framework-types/package-api/Package").Package; export default PlaybackTechnologyPackage; export declare const version: string;