UNPKG

@td-design/react-native

Version:

react-native UI组件库

10 lines 443 B
/// <reference types="react" /> import type { TextProps as RNTextProps, TextInputProps } 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; //# sourceMappingURL=ReText.d.ts.map