react-native-style-utilities
Version:
useStyle, useFlatStyle and findStyle helper functions for the React Native StyleSheet API
4 lines (3 loc) • 346 B
TypeScript
import { DependencyList } from "react";
import { ImageStyle, StyleProp, TextStyle, ViewStyle } from "react-native";
export declare const useFlatStyle: <TStyle extends ViewStyle | TextStyle | ImageStyle, TOutput extends StyleProp<TStyle>>(styleFactory: () => TOutput, deps?: DependencyList | undefined) => TStyle extends (infer U)[] ? U : TStyle;