mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
958b7aa9aa
Summary: Adds e2e tests for the array of object prop types in the codegen Reviewed By: rubennorte, motiz88 Differential Revision: D16814301 fbshipit-source-id: 613f32a888451c0c1b7359133b7bf88878e36916
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {
|
|
PointValue,
|
|
ColorValue,
|
|
} from '../../../../../Libraries/StyleSheet/StyleSheetTypes';
|
|
import type {ImageSource} from '../../../../../Libraries/Image/ImageSource';
|
|
import type {
|
|
Int32,
|
|
Float,
|
|
WithDefault,
|
|
} from '../../../../../Libraries/Types/CodegenTypes';
|
|
import type {ViewProps} from '../../../../../Libraries/Components/View/ViewPropTypes';
|
|
import codegenNativeComponent from '../../../../../Libraries/Utilities/codegenNativeComponent';
|
|
import {type NativeComponentType} from '../../../../../Libraries/Utilities/codegenNativeComponent';
|
|
|
|
type NativeProps = $ReadOnly<{|
|
|
...ViewProps,
|
|
|
|
// Props
|
|
names?: $ReadOnlyArray<string>,
|
|
disableds?: $ReadOnlyArray<boolean>,
|
|
progress?: $ReadOnlyArray<Int32>,
|
|
radii?: $ReadOnlyArray<Float>,
|
|
colors?: $ReadOnlyArray<ColorValue>,
|
|
srcs?: $ReadOnlyArray<ImageSource>,
|
|
points?: $ReadOnlyArray<PointValue>,
|
|
sizes?: WithDefault<$ReadOnlyArray<'small' | 'large'>, 'small'>,
|
|
object?: $ReadOnlyArray<$ReadOnly<{|prop: string|}>>,
|
|
|}>;
|
|
|
|
export default (codegenNativeComponent<NativeProps>(
|
|
'ArrayPropsNativeComponentView',
|
|
): NativeComponentType<NativeProps>);
|