@8man/react-native-media-console
Version:
A media player for the react-native-video component
13 lines (12 loc) • 492 B
TypeScript
import React, { 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) => React.JSX.Element;
export {};