mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a53b4a0a2b
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/40883 Changelog: [Internal] Reviewed By: mvitousek Differential Revision: D50198503 fbshipit-source-id: 47537aeefbc6cbdee8954ea1052ff3a4b4392744
16 lines
353 B
JavaScript
16 lines
353 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
|
|
* @nolint
|
|
* @format
|
|
*/
|
|
|
|
declare opaque type React$Element<
|
|
+ElementType: React$ElementType,
|
|
+P = React$ElementProps<ElementType>,
|
|
>: {...};
|