RN: Align ReportFullyDrawnView Type Exports (#52020)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/52020

Aligns the type exports of `ReportFullyDrawnView` across platforms, so that they are resilient to any changes made to `View` itself.

Changelog:
[Internal]

Reviewed By: lunaleaps

Differential Revision: D76638685

fbshipit-source-id: 612b2bcd76e70751aec691a24f31beca453cea35
This commit is contained in:
Tim Yung
2025-06-13 19:26:26 -07:00
committed by Facebook GitHub Bot
parent 30d8a153e6
commit 92af97591b
@@ -8,6 +8,8 @@
* @format
*/
import type {ReportFullyDrawnViewType} from './ReportFullyDrawnViewNativeComponent';
import {View} from 'react-native';
export default View;
export default View as ReportFullyDrawnViewType;