react-native-video-player
Version:
A <VideoPlayer /> component for React Native with controls
12 lines • 933 B
TypeScript
import type { VideoPlayerProps } from './index';
import { type VideoRef } from 'react-native-video';
export interface VideoInternalRef extends VideoRef {
onStart: () => void;
}
export declare const RenderVideo: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Pick<VideoPlayerProps, "duration" | "style" | "repeat" | "autoplay" | "disableSeek" | "source" | "onLoad" | "onProgress" | "muted" | "onPlayPress" | "resizeMode" | "onMutePress" | "animationDuration" | "customStyles" | "showDuration" | "disableFullscreen" | "controlsTimeout" | "defaultMuted" | "disableControlsAutoHide" | "fullScreenOnLongPress" | "hideControlsOnStart" | "onEnd" | "onHideControls" | "onPlaybackStateChanged" | "onShowControls" | "pauseOnPress" | "paused"> & {
sizeStyle: {
width: number;
height: number;
};
} & import("react").RefAttributes<VideoInternalRef>>>;
//# sourceMappingURL=Video.d.ts.map