feat: add Mux video component (#1036)

This commit is contained in:
Wesley Luyten
2026-03-24 18:19:50 -05:00
committed by GitHub
parent 833210a270
commit 271a8c8502
45 changed files with 941 additions and 182 deletions
@@ -0,0 +1,14 @@
import { MuxVideo } from '../../media/mux-video';
import { safeDefine } from '../safe-define';
export class MuxVideoElement extends MuxVideo {
static readonly tagName = 'mux-video';
}
safeDefine(MuxVideoElement);
declare global {
interface HTMLElementTagNameMap {
[MuxVideoElement.tagName]: MuxVideoElement;
}
}