| 25 | } |
| 26 | |
| 27 | export interface ReactPlayerProps extends PreviewProps, VideoElementProps { |
| 28 | config?: Config; |
| 29 | fallback?: React.ReactNode; |
| 30 | onReady?: () => void; |
| 31 | onStart?: (event: SyntheticEvent<HTMLVideoElement>) => void; |
| 32 | pip?: boolean; |
| 33 | playing?: boolean; |
| 34 | wrapper?: string | React.ComponentType<React.HTMLAttributes<HTMLDivElement>>; |
| 35 | } |
| 36 | |
| 37 | export interface PreviewProps { |
| 38 | src?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…