From 92af97591bcc4f0dc1f710754ef273d5396b74ef Mon Sep 17 00:00:00 2001 From: Tim Yung Date: Fri, 13 Jun 2025 19:26:26 -0700 Subject: [PATCH] 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 --- .../rn-tester/ReportFullyDrawnView/ReportFullyDrawnView.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/rn-tester/ReportFullyDrawnView/ReportFullyDrawnView.js b/packages/rn-tester/ReportFullyDrawnView/ReportFullyDrawnView.js index 882c04ff694..dbf4a249970 100644 --- a/packages/rn-tester/ReportFullyDrawnView/ReportFullyDrawnView.js +++ b/packages/rn-tester/ReportFullyDrawnView/ReportFullyDrawnView.js @@ -8,6 +8,8 @@ * @format */ +import type {ReportFullyDrawnViewType} from './ReportFullyDrawnViewNativeComponent'; + import {View} from 'react-native'; -export default View; +export default View as ReportFullyDrawnViewType;