Add Prop Type for openPlayer

This commit is contained in:
Alexandru Branza 2023-05-30 18:44:00 +03:00
parent 5b8c211ade
commit b20359f373

View file

@ -103,14 +103,16 @@ Stream.propTypes = {
deepLinks: PropTypes.shape({
player: PropTypes.string,
externalPlayer: PropTypes.shape({
vlc: {
ios: PropTypes.string,
android: PropTypes.string,
desktop: PropTypes.string
},
href: PropTypes.string,
streaming: PropTypes.string,
fileName: PropTypes.string
openPlayer: PropTypes.shape({
vlc: {
ios: PropTypes.string,
android: PropTypes.string,
desktop: PropTypes.string
},
href: PropTypes.string,
streaming: PropTypes.string,
fileName: PropTypes.string
})
})
}),
onClick: PropTypes.func