Files
v10/packages/html/src/define/media/hls-video.ts
T

14 lines
331 B
TypeScript

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;
}
}