Skip to content

Commit 159b619

Browse files
rubennortefacebook-github-bot
authored andcommitted
temp
Differential Revision: D69996010
1 parent 53ff613 commit 159b619

File tree

82 files changed

+269
-186
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+269
-186
lines changed

packages/react-native-codegen/e2e/__test_fixtures__/components/ArrayPropsNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
1213
import type {ImageSource} from 'react-native/Libraries/Image/ImageSource';
13-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1414
import type {ColorValue} from 'react-native/Libraries/StyleSheet/StyleSheet';
1515
import type {
1616
DimensionValue,

packages/react-native-codegen/e2e/__test_fixtures__/components/BooleanPropNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
12-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1313
import type {WithDefault} from 'react-native/Libraries/Types/CodegenTypes';
1414

1515
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';

packages/react-native-codegen/e2e/__test_fixtures__/components/ColorPropNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
12-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1313
import type {ColorValue} from 'react-native/Libraries/StyleSheet/StyleSheet';
1414

1515
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';

packages/react-native-codegen/e2e/__test_fixtures__/components/DimensionPropNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
12-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1313
import type {DimensionValue} from 'react-native/Libraries/StyleSheet/StyleSheetTypes';
1414

1515
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';

packages/react-native-codegen/e2e/__test_fixtures__/components/EdgeInsetsPropNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
12-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1313

1414
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
1515

packages/react-native-codegen/e2e/__test_fixtures__/components/EnumPropNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
12-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1313
import type {WithDefault} from 'react-native/Libraries/Types/CodegenTypes';
1414

1515
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';

packages/react-native-codegen/e2e/__test_fixtures__/components/EventNestedObjectPropsNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
12-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1313
import type {
1414
BubblingEventHandler,
1515
Int32,

packages/react-native-codegen/e2e/__test_fixtures__/components/EventPropsNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
12-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1313
import type {
1414
BubblingEventHandler,
1515
DirectEventHandler,

packages/react-native-codegen/e2e/__test_fixtures__/components/FloatPropsNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
12-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1313
import type {
1414
Float,
1515
WithDefault,

packages/react-native-codegen/e2e/__test_fixtures__/components/ImagePropNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
* @flow strict-local
99
*/
1010

11+
import type {HostComponent} from 'react-native';
1112
import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
1213
import type {ImageSource} from 'react-native/Libraries/Image/ImageSource';
13-
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
1414

1515
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
1616

0 commit comments

Comments
 (0)