File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
react-native/Libraries/Core/Timers
rn-tester/js/examples/Animated Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ react.runtime=automatic
7878experimental.only_support_flow_fixme_and_expected_error=true
7979experimental.require_suppression_with_error_code=true
8080experimental.invariant_subtyping_error_message_improvement=true
81+ experimental.natural_inference.local_object_literals.followup_fix=true
8182
8283ban_spread_key_props=true
8384
Original file line number Diff line number Diff line change @@ -477,8 +477,10 @@ if (!NativeTiming) {
477477 ExportedJSTimers = ( {
478478 callReactNativeMicrotasks : JSTimers . callReactNativeMicrotasks ,
479479 queueReactNativeMicrotask : JSTimers . queueReactNativeMicrotask ,
480+ // $FlowFixMe[incompatible-variance]
480481 } : typeof JSTimers ) ;
481482} else {
483+ // $FlowFixMe[incompatible-variance]
482484 ExportedJSTimers = JSTimers ;
483485}
484486
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ function AnimatedTransformStyleExample(): React.Node {
8282 const [ properties , setProperties ] = useState ( transformProperties ) ;
8383 const [ useNativeDriver , setUseNativeDriver ] = useState ( false ) ;
8484 const onToggle = ( property : string ) =>
85+ // $FlowFixMe[incompatible-type]
8586 setProperties ( {
8687 ...properties ,
8788 [ property ] : {
You can’t perform that action at this time.
0 commit comments