UNPKG

unified-video-framework

Version:

Cross-platform video player framework supporting iOS, Android, Web, Smart TVs (Samsung/LG), Roku, and more

21 lines 745 B
import React from 'react'; import type { PlaylistItem } from '../../types/PlaylistTypes'; type Props = { title?: string; items: PlaylistItem[]; currentIndex: number; loop: boolean; shuffle: boolean; visible: boolean; inline?: boolean; position?: 'right' | 'left'; width?: number; isFullscreen?: boolean; onClose: () => void; onItemClick: (index: number) => void; onLoopToggle: () => void; onShuffleToggle: () => void; }; export default function PlaylistPanel({ title, items, currentIndex, loop, shuffle, visible, inline, position, width, isFullscreen, onClose, onItemClick, onLoopToggle, onShuffleToggle, }: Props): React.JSX.Element; export {}; //# sourceMappingURL=PlaylistPanel.d.ts.map