feat: add media API + HLS video components (#507)

This commit is contained in:
Wesley Luyten
2026-02-18 13:34:49 -06:00
committed by GitHub
parent e936ea4e44
commit b3a31a335a
19 changed files with 1039 additions and 6 deletions
+13 -1
View File
@@ -1 +1,13 @@
// TODO: Register HLS video element
import { HlsVideo } from '../../ui/hls-video/hls-video-element';
export class HlsVideoElement extends HlsVideo {
static readonly tagName = 'hls-video';
}
customElements.define(HlsVideoElement.tagName, HlsVideoElement);
declare global {
interface HTMLElementTagNameMap {
[HlsVideoElement.tagName]: HlsVideoElement;
}
}