UNPKG

spectatr-player-sdk

Version:

A custom video player built with Stencil with Shaka Player integration

12 lines (10 loc) 340 B
import type { Components, JSX } from "../types/components"; interface VideoPlayer extends Components.VideoPlayer, HTMLElement {} export const VideoPlayer: { prototype: VideoPlayer; new (): VideoPlayer; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;