fix(types): android/allowsFullscreenVideo (#590)

Fix missing `allowsFullscreenVideo` prop after https://github.com/react-native-community/react-native-webview/pull/325 got merged.
This commit is contained in:
Dariusz Niemczyk
2019-06-13 08:52:04 +02:00
committed by Thibault Malbranche
parent a863c6557f
commit f8a560ba51
+5
View File
@@ -529,6 +529,11 @@ export interface AndroidWebViewProps extends WebViewSharedProps {
* @platform android * @platform android
*/ */
mixedContentMode?: 'never' | 'always' | 'compatibility'; mixedContentMode?: 'never' | 'always' | 'compatibility';
/**
* Sets ability to open fullscreen videos on Android devices.
*/
allowsFullscreenVideo?: boolean;
} }
export interface WebViewSharedProps extends ViewProps { export interface WebViewSharedProps extends ViewProps {