Before the update the type of onProgress callback was:
(property) onProgress?: ((state: OnProgressProps) => void) | undefined
But after the onProgress call back is of HTMLVideoElementEvent type:
(property) onProgress?: React.ReactEventHandler<HTMLVideoElement> | undefined
I don't know if this is intended or not. Also type definitions are not explicit as in previous version.