mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
14 lines
331 B
TypeScript
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;
|
|
}
|
|
}
|