UNPKG

react-native-redash

Version:
10 lines (9 loc) 407 B
/// <reference types="react" /> import type { TextInputProps, TextProps as RNTextProps } from "react-native"; import Animated from "react-native-reanimated"; interface TextProps extends Omit<TextInputProps, "value" | "style"> { text: Animated.SharedValue<string>; style?: Animated.AnimateProps<RNTextProps>["style"]; } declare const ReText: (props: TextProps) => JSX.Element; export default ReText;