@aidenlx/player
Version:
Headless web components that make integrating media on the a web a breeze.
12 lines (8 loc) • 308 B
text/typescript
import { safelyDefineCustomElement } from '@vidstack/foundation';
import { PlayButtonElement } from '../ui/play-button/PlayButtonElement';
safelyDefineCustomElement('vds-play-button', PlayButtonElement);
declare global {
interface HTMLElementTagNameMap {
'vds-play-button': PlayButtonElement;
}
}