This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This documents most of the types available in react-native-video when rendering a player | |
// To use these types, can inject as follows | |
import RNVideo from 'react-native-video'; | |
const Video = RNVideo as unknown as React.JSXElementConstructor<VideoProps>; | |
// ...Now use 'Video' as your react-native-video component, and you'll get the props. | |
// these below types were organized in 2020, so there may be new types available now in react-native-video | |
// The types are below: |
OlderNewer