Fix OSS Website generation

Summary: flow existentials aren't supported yet.

Reviewed By: yungsters

Differential Revision: D4649184

fbshipit-source-id: c1294edd4bf15559d7a277816361af9bcca9ad48
This commit is contained in:
Spencer Ahrens 2017-03-03 00:02:17 -08:00 committed by Facebook Github Bot
parent d2050a35dd
commit 32d753164d
1 changed files with 3 additions and 3 deletions

View File

@ -739,12 +739,12 @@ if (Platform.OS === 'android') {
}; };
AndroidScrollView = requireNativeComponent( AndroidScrollView = requireNativeComponent(
'RCTScrollView', 'RCTScrollView',
(ScrollView: ReactClass<*>), (ScrollView: ReactClass<any>),
nativeOnlyProps nativeOnlyProps
); );
AndroidHorizontalScrollView = requireNativeComponent( AndroidHorizontalScrollView = requireNativeComponent(
'AndroidHorizontalScrollView', 'AndroidHorizontalScrollView',
(ScrollView: ReactClass<*>), (ScrollView: ReactClass<any>),
nativeOnlyProps nativeOnlyProps
); );
} else if (Platform.OS === 'ios') { } else if (Platform.OS === 'ios') {
@ -758,7 +758,7 @@ if (Platform.OS === 'android') {
}; };
RCTScrollView = requireNativeComponent( RCTScrollView = requireNativeComponent(
'RCTScrollView', 'RCTScrollView',
(ScrollView: ReactClass<*>), (ScrollView: ReactClass<any>),
nativeOnlyProps, nativeOnlyProps,
); );
RCTScrollContentView = requireNativeComponent('RCTScrollContentView', View); RCTScrollContentView = requireNativeComponent('RCTScrollContentView', View);