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:
parent
d2050a35dd
commit
32d753164d
|
@ -739,12 +739,12 @@ if (Platform.OS === 'android') {
|
|||
};
|
||||
AndroidScrollView = requireNativeComponent(
|
||||
'RCTScrollView',
|
||||
(ScrollView: ReactClass<*>),
|
||||
(ScrollView: ReactClass<any>),
|
||||
nativeOnlyProps
|
||||
);
|
||||
AndroidHorizontalScrollView = requireNativeComponent(
|
||||
'AndroidHorizontalScrollView',
|
||||
(ScrollView: ReactClass<*>),
|
||||
(ScrollView: ReactClass<any>),
|
||||
nativeOnlyProps
|
||||
);
|
||||
} else if (Platform.OS === 'ios') {
|
||||
|
@ -758,7 +758,7 @@ if (Platform.OS === 'android') {
|
|||
};
|
||||
RCTScrollView = requireNativeComponent(
|
||||
'RCTScrollView',
|
||||
(ScrollView: ReactClass<*>),
|
||||
(ScrollView: ReactClass<any>),
|
||||
nativeOnlyProps,
|
||||
);
|
||||
RCTScrollContentView = requireNativeComponent('RCTScrollContentView', View);
|
||||
|
|
Loading…
Reference in New Issue