unified-video-framework
Version:
Cross-platform video player framework supporting iOS, Android, Web, Smart TVs (Samsung/LG), Roku, and more
18 lines • 663 B
TypeScript
import React from 'react';
import { VideoSegment, SkipButtonPosition } from '../../chapters/types/ChapterTypes';
export interface SkipButtonProps {
segment: VideoSegment | null;
visible?: boolean;
position?: SkipButtonPosition;
autoHideDelay?: number;
skipLabel?: string;
onSkip?: (segment: VideoSegment) => void;
onShow?: (segment: VideoSegment) => void;
onHide?: (segment: VideoSegment, reason: string) => void;
className?: string;
style?: React.CSSProperties;
enableAutoSkip?: boolean;
autoSkipDelay?: number;
}
export declare const SkipButton: React.FC<SkipButtonProps>;
//# sourceMappingURL=SkipButton.d.ts.map