import { HlsBackgroundVideo } from "../../media/hls-background-video/adapter.js"; import "../../media/mux-background-video/index.js"; //#region src/define/media/mux-background-video.d.ts /** * `` — the Mux-flavored tag for ``. * * A distinct subclass rather than a re-export because a custom-element class can hold one tag name: registering the * same class twice throws. The behavior is entirely the shared base's. */ declare class MuxBackgroundVideoElement extends HlsBackgroundVideo { static readonly tagName = "mux-background-video"; } declare global { interface HTMLElementTagNameMap { [MuxBackgroundVideoElement.tagName]: MuxBackgroundVideoElement; } } //#endregion export { MuxBackgroundVideoElement }; //# sourceMappingURL=mux-background-video.d.ts.map