diff --git a/packages/react-native-renderer/src/ReactNativeTypes.js b/packages/react-native-renderer/src/ReactNativeTypes.js index 0b4f9a1045b84..917e3988c7b38 100644 --- a/packages/react-native-renderer/src/ReactNativeTypes.js +++ b/packages/react-native-renderer/src/ReactNativeTypes.js @@ -85,6 +85,7 @@ export type ViewConfig = $ReadOnly<{ }>, ... }>, + supportsRawText?: boolean, uiViewClassName: string, validAttributes: AttributeConfiguration, }>; @@ -92,6 +93,7 @@ export type ViewConfig = $ReadOnly<{ export type PartialViewConfig = $ReadOnly<{ bubblingEventTypes?: $PropertyType, directEventTypes?: $PropertyType, + supportsRawText?: boolean, uiViewClassName: string, validAttributes?: PartialAttributeConfiguration, }>;