| 18 | } |
| 19 | |
| 20 | interface VideoProps { |
| 21 | setQuality: React.Dispatch<React.SetStateAction<string>>; |
| 22 | thumbnails: Thumbnail[]; |
| 23 | segments: Segment[]; |
| 24 | subtitles: string; |
| 25 | videoJsOptions: any; |
| 26 | contentId: number; |
| 27 | appxVideoId?: string; |
| 28 | appxCourseId?: string; |
| 29 | onVideoEnd: () => void; |
| 30 | } |
| 31 | |
| 32 | export const VideoPlayerSegment: FunctionComponent<VideoProps> = ({ |
| 33 | setQuality, |
nothing calls this directly
no outgoing calls
no test coverage detected