UNPKG

react-native-redash

Version:

Utility library for React Native Reanimated

15 lines (14 loc) 478 B
/// <reference types="react" /> import { TextStyle } from "react-native"; import Animated from "react-native-reanimated"; declare const Value: typeof Animated.Value, concat: typeof Animated.concat; export { Value }; export declare type Value = typeof Value; export { concat }; export declare type Node = ReturnType<typeof concat>; interface TextProps { text: Node; style?: TextStyle; } declare const _default: (props: TextProps) => JSX.Element; export default _default;