@samitouri / QOS-React / commits / 1e0d12b6f2

Align `AttributeConfiguration` type in `ReactNativeTypes` (#33671)

Dawid Małecki committed Jun 30, 2025 at 16:36 UTC 1e0d12b6f273d7345e32c16cd937475ed7c512ad
1 file changed +1 -1
packages/react-native-renderer/src/ReactNativeTypes.js
+1 -1
@@ -34,7 +34,7 @@ export type AttributeType<T, V> =
34 export type AnyAttributeType = AttributeType<$FlowFixMe, $FlowFixMe>;
35
36 export type AttributeConfiguration = $ReadOnly<{
37 - [propName: string]: AnyAttributeType,
37 + [propName: string]: AnyAttributeType | void,
38 style?: $ReadOnly<{
39 [propName: string]: AnyAttributeType,
40 ...