UNPKG

stormcloud-video-player

Version:

Ad-first HLS video player with SCTE-35 support and Google IMA integration for precise ad break alignment

14 lines (11 loc) 628 B
import React from 'react'; import { StormcloudVideoPlayer } from '../player/StormcloudVideoPlayer.cjs'; import { S as StormcloudVideoPlayerConfig } from '../types-GpA_hKek.cjs'; type StormcloudVideoPlayerProps = Omit<StormcloudVideoPlayerConfig, "videoElement"> & React.VideoHTMLAttributes<HTMLVideoElement> & { onReady?: (player: StormcloudVideoPlayer) => void; wrapperClassName?: string; wrapperStyle?: React.CSSProperties; licenseKey?: string; }; declare const StormcloudVideoPlayerComponent: React.FC<StormcloudVideoPlayerProps>; export { StormcloudVideoPlayerComponent, type StormcloudVideoPlayerProps };