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:05 +02:00 committed by Thibault Malbranche
parent a863c6557f
commit f8a560ba51
1 changed files with 5 additions and 0 deletions

View File

@ -529,6 +529,11 @@ export interface AndroidWebViewProps extends WebViewSharedProps {
* @platform android
*/
mixedContentMode?: 'never' | 'always' | 'compatibility';
/**
* Sets ability to open fullscreen videos on Android devices.
*/
allowsFullscreenVideo?: boolean;
}
export interface WebViewSharedProps extends ViewProps {