UNPKG

@devbookhq/docusaurus-code-video-plugin

Version:

Add a video to a Docusaurus code block and highlight code lines as the video plays.

9 lines (8 loc) 266 B
/// <reference types="react" /> export interface Props { youtubeID: string; onClose?: () => void; onTimeChange?: (time: number) => void; } declare function VideoModal({ youtubeID, onClose, onTimeChange, }: Props): JSX.Element; export default VideoModal;