mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
15 lines
341 B
TypeScript
15 lines
341 B
TypeScript
import { VimeoVideo } from '../../media/vimeo-video';
|
|
import { safeDefine } from '../safe-define';
|
|
|
|
export class VimeoVideoElement extends VimeoVideo {
|
|
static readonly tagName = 'vimeo-video';
|
|
}
|
|
|
|
safeDefine(VimeoVideoElement);
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
[VimeoVideoElement.tagName]: VimeoVideoElement;
|
|
}
|
|
}
|