Props for the VideoGallery component.

interface VideoGalleryProps {
    autoPlay?: boolean;
    currentIndex: number;
    handleCurrentIndex: (index: number) => void;
    handleDuration: (duration: null | string) => void;
    videos: MediumProps[];
}

Properties

autoPlay?: boolean
currentIndex: number
handleCurrentIndex: (index: number) => void
handleDuration: (duration: null | string) => void
videos: MediumProps[]