UNPKG

react-native-style-utilities

Version:

useStyle, useFlatStyle and findStyle helper functions for the React Native StyleSheet API

3 lines (2 loc) 328 B
import { ImageStyle, StyleProp, TextStyle, ViewStyle } from "react-native"; export declare const findStyle: <TStyle extends ViewStyle | TextStyle | ImageStyle, TResult extends TStyle extends (infer U)[] ? U : TStyle, TName extends keyof TResult>(style: StyleProp<TStyle>, stylePropertyKey: TName) => TResult[TName] | undefined;