mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
92af97591b
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
16 lines
399 B
JavaScript
16 lines
399 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
import type {ReportFullyDrawnViewType} from './ReportFullyDrawnViewNativeComponent';
|
|
|
|
import {View} from 'react-native';
|
|
|
|
export default View as ReportFullyDrawnViewType;
|