We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 359228e commit 8c7ec78Copy full SHA for 8c7ec78
.flowconfig
@@ -17,7 +17,6 @@ node_modules/warning/.*
17
18
[untyped]
19
.*/node_modules/@react-native-community/cli/.*/.*
20
-.*/node_modules/react-native
21
22
[include]
23
js/MaskedViewTypes.js
@@ -1,8 +1,8 @@
1
// @flow
2
import { type Node, type Element } from 'react';
3
-import { ViewPropTypes } from 'react-native';
+import { type ViewProps } from 'react-native/Libraries/Components/View/ViewPropTypes';
4
5
-export type MaskedViewProps = typeof ViewPropTypes &
+export type MaskedViewProps = $Shape<ViewProps> &
6
$ReadOnly<{|
7
children: Node,
8
/**
0 commit comments