WIP: test #8

Draft
loewy wants to merge 61 commits from async-queue-shaka into master
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 491ed77a32 - Show all commits

View File

@@ -100,7 +100,7 @@ const Video = forwardRef<VideoRef, ReactVideoProps>(
setFullScreen: unsupported,
save: unsupported,
restoreUserInterfaceForPictureInPictureStopCompleted: unsupported,
nativeHtmlRef: nativeRef,
nativeHtmlVideoRef: nativeRef,
}),
[
seek,

View File

@@ -17,5 +17,5 @@ export interface VideoRef {
setVolume: (volume: number) => void;
getCurrentPosition: () => Promise<number>;
setFullScreen: (fullScreen: boolean) => void;
nativeHtmlRef?: RefObject<HTMLVideoElement>; // web only
nativeHtmlVideoRef?: RefObject<HTMLVideoElement>; // web only
}