UNPKG

parevo-interactive-video

Version:

Framework-agnostic interactive video library with quiz overlays for React, Vue, and vanilla JS

8 lines (7 loc) 299 B
import React from 'react'; import type { InteractiveVideoOptions } from '../core'; export interface InteractiveVideoReactProps extends Omit<InteractiveVideoOptions, 'src'> { src: string; className?: string; } export declare const InteractiveVideoReact: React.FC<InteractiveVideoReactProps>;