UNPKG

react-native-video-zoom-control

Version:

A video player overlay for React Native Video that supports pinch-to-zoom and multiple video renditions.

13 lines (12 loc) 467 B
import { ReactNode, RefObject } from 'react'; import { TouchableHighlight, ViewProps } from 'react-native'; interface ControlProps extends ViewProps { children: ReactNode; callback?: () => void; controlRef?: RefObject<TouchableHighlight>; disabled?: boolean; style?: any; resetControlTimeout?: () => void; } export declare const Control: ({ children, callback, controlRef, disabled, style, ...props }: ControlProps) => JSX.Element; export {};