From c8fd725af2302a56ea1d74abc55fbd2ea9a4bee0 Mon Sep 17 00:00:00 2001 From: Laurens Lamberts <48212886+weareyou-laurens@users.noreply.github.com> Date: Wed, 11 Sep 2019 15:45:34 +0200 Subject: [PATCH] Update index.d.ts (#37923) Added two properties to the type definition. These are specified in the documentation and do have effect on fullscreen presentation, but are missing in the types --- types/react-native-video/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/react-native-video/index.d.ts b/types/react-native-video/index.d.ts index 60bb96ffd2..d3e26f36e7 100644 --- a/types/react-native-video/index.d.ts +++ b/types/react-native-video/index.d.ts @@ -53,6 +53,8 @@ export interface VideoProperties extends ViewProps { src?: any; seek?: number; fullscreen?: boolean; + fullscreenOrientation?: 'all' | 'landscape' | 'portrait'; + fullscreenAutorotate?: boolean; onVideoLoadStart?(): void; onVideoLoad?(): void; onVideoBuffer?(): void;