UNPKG

react-native-video-zoom-control

Version:

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

11 lines (10 loc) 396 B
/// <reference types="react" /> import { GestureResponderHandlers } from 'react-native'; interface VolumeProps { volumeFillWidth: number; volumeTrackWidth: number; volumePosition: number; volumePanHandlers: GestureResponderHandlers; } export declare const Volume: ({ volumeFillWidth, volumePosition, volumeTrackWidth, volumePanHandlers, }: VolumeProps) => JSX.Element; export {};