mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 11:42:05 +00:00
Add Prop Type for openPlayer
This commit is contained in:
parent
5b8c211ade
commit
b20359f373
1 changed files with 10 additions and 8 deletions
|
|
@ -103,14 +103,16 @@ Stream.propTypes = {
|
||||||
deepLinks: PropTypes.shape({
|
deepLinks: PropTypes.shape({
|
||||||
player: PropTypes.string,
|
player: PropTypes.string,
|
||||||
externalPlayer: PropTypes.shape({
|
externalPlayer: PropTypes.shape({
|
||||||
vlc: {
|
openPlayer: PropTypes.shape({
|
||||||
ios: PropTypes.string,
|
vlc: {
|
||||||
android: PropTypes.string,
|
ios: PropTypes.string,
|
||||||
desktop: PropTypes.string
|
android: PropTypes.string,
|
||||||
},
|
desktop: PropTypes.string
|
||||||
href: PropTypes.string,
|
},
|
||||||
streaming: PropTypes.string,
|
href: PropTypes.string,
|
||||||
fileName: PropTypes.string
|
streaming: PropTypes.string,
|
||||||
|
fileName: PropTypes.string
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}),
|
}),
|
||||||
onClick: PropTypes.func
|
onClick: PropTypes.func
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue