mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/50222 The flow-api-translator will generate ```ts export * as default from './AnimatedExports'; ``` in TS which preserves the namespace. Previous import, export translated to: ```ts declare const $$EXPORT_DEFAULT_DECLARATION$$: typeof Animated; declare type $$EXPORT_DEFAULT_DECLARATION$$ = typeof $$EXPORT_DEFAULT_DECLARATION$$; export default $$EXPORT_DEFAULT_DECLARATION$$; ``` which dropped the `Animated` namespace. Changelog: [Internal] Reviewed By: huntie Differential Revision: D71737199 fbshipit-source-id: a46a7ddddd023fa831cd4bb50f17a0641f328066