| 21 | |
| 22 | // todo correct types |
| 23 | interface VideoPlayerProps { |
| 24 | setQuality: React.Dispatch<React.SetStateAction<string>>; |
| 25 | options: any; |
| 26 | onReady?: (player: Player) => void; |
| 27 | subtitles?: string; |
| 28 | contentId: number; |
| 29 | appxVideoId?: string; |
| 30 | appxCourseId?: string; |
| 31 | onVideoEnd: () => void; |
| 32 | } |
| 33 | |
| 34 | interface TransformState { |
| 35 | scale: number; |
nothing calls this directly
no outgoing calls
no test coverage detected