diff --git a/packages/react-native/src/private/styles/composeStyles.js b/packages/react-native/src/private/styles/composeStyles.js index 6ae46a75ce5..a0e90e92a0a 100644 --- a/packages/react-native/src/private/styles/composeStyles.js +++ b/packages/react-native/src/private/styles/composeStyles.js @@ -4,26 +4,19 @@ * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * + * @flow strict * @format */ -import type { - ImageStyle, - TextStyle, - ViewStyle, -} from '../../../Libraries/StyleSheet/StyleSheet'; -import type {StyleProp} from '../../../Libraries/StyleSheet/StyleSheetTypes'; - /** * Combines two styles such that `style2` will override any styles in `style1`. * If either style is null or undefined, the other one is returned without * allocating an array, saving allocations and enabling memoization. */ -export default function composeStyles< - T: ViewStyle | ImageStyle | TextStyle, - U: T, - V: T, ->(style1: ?StyleProp, style2: ?StyleProp): ?StyleProp { +export default function composeStyles( + style1: ?U, + style2: ?V, +): ?(T | $ReadOnlyArray) { if (style1 == null) { return style2; }