We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5f275e commit b59f186Copy full SHA for b59f186
packages/react-native-renderer/src/ReactNativeTypes.js
@@ -83,8 +83,8 @@ export type ViewConfig = $ReadOnly<{
83
}>;
84
85
export type PartialViewConfig = $ReadOnly<{
86
- bubblingEventTypes?: $PropertyType<ViewConfig, 'bubblingEventTypes'>,
87
- directEventTypes?: $PropertyType<ViewConfig, 'directEventTypes'>,
+ bubblingEventTypes?: ViewConfig['bubblingEventTypes'],
+ directEventTypes?: ViewConfig['directEventTypes'],
88
supportsRawText?: boolean,
89
uiViewClassName: string,
90
validAttributes?: PartialAttributeConfiguration,
0 commit comments