Fix some classes of incorrect Flow errors for Animated
Summary: Replace the union with a spread Reviewed By: blairvanderhoof Differential Revision: D8715694 fbshipit-source-id: 3b1ce893a065bfc7395b576e485a79f09bacc999
This commit is contained in:
parent
54942746d4
commit
db2159d0b3
|
@ -16,14 +16,10 @@ const ScrollView = require('ScrollView');
|
||||||
const Text = require('Text');
|
const Text = require('Text');
|
||||||
const View = require('View');
|
const View = require('View');
|
||||||
|
|
||||||
const Animated = {
|
module.exports = {
|
||||||
|
...AnimatedImplementation,
|
||||||
View: AnimatedImplementation.createAnimatedComponent(View),
|
View: AnimatedImplementation.createAnimatedComponent(View),
|
||||||
Text: AnimatedImplementation.createAnimatedComponent(Text),
|
Text: AnimatedImplementation.createAnimatedComponent(Text),
|
||||||
Image: AnimatedImplementation.createAnimatedComponent(Image),
|
Image: AnimatedImplementation.createAnimatedComponent(Image),
|
||||||
ScrollView: AnimatedImplementation.createAnimatedComponent(ScrollView),
|
ScrollView: AnimatedImplementation.createAnimatedComponent(ScrollView),
|
||||||
};
|
};
|
||||||
|
|
||||||
Object.assign((Animated: Object), AnimatedImplementation);
|
|
||||||
|
|
||||||
module.exports = ((Animated: any): typeof AnimatedImplementation &
|
|
||||||
typeof Animated);
|
|
||||||
|
|
Loading…
Reference in New Issue