unified-video-framework
Version:
Cross-platform video player framework supporting iOS, Android, Web, Smart TVs (Samsung/LG), Roku, and more
15 lines • 609 B
TypeScript
import React from 'react';
import type { EPGComponentProps } from '../types/EPGTypes';
interface EPGNavigationControlsProps extends EPGComponentProps {
onNavigate: (direction: 'left' | 'right' | 'today') => void;
onTimeRangeChange?: (hours: number) => void;
canNavigateLeft?: boolean;
canNavigateRight?: boolean;
currentTime?: number;
timelineStart?: number;
timelineEnd?: number;
visibleHours?: number;
}
export declare const EPGNavigationControls: React.FC<EPGNavigationControlsProps>;
export default EPGNavigationControls;
//# sourceMappingURL=EPGNavigationControls.d.ts.map