UNPKG

@zezosoft/react-player

Version:

A lightweight and customizable video player by Zezosoft, built for seamless streaming with advanced controls, adaptive playback, and modern UI. Perfect for web and React applications.

11 lines (10 loc) 297 B
import React from "react"; import { AdBreak } from "../types/AdTypes"; import { IPlayerConfig } from "../../types"; interface AdOverlayProps { adBreak: AdBreak; onSkip?: () => void; config?: IPlayerConfig; } declare const AdOverlay: React.FC<AdOverlayProps>; export default AdOverlay;