mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* added @types/react-native-video-player * removed typescript version * modified for tsconfig.json * modified for lint
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import * as React from 'react';
|
|
import VideoPlayer from 'react-native-video-player';
|
|
|
|
<VideoPlayer
|
|
endWithThumbnail
|
|
thumbnail={{ uri: 'thumb.jpg' }}
|
|
video={{ uri: 'sample.mp4' }}
|
|
videoWidth={1280}
|
|
videoHeight={720}
|
|
/>;
|