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