react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
17 lines (13 loc) • 656 B
text/typescript
import { Component } from 'react';
import type { TextProps } from 'react-native';
import { Text } from 'react-native';
import createAnimatedComponent from '../../createAnimatedComponent';
import type { AnimateProps } from '../helperTypes';
// TODO TYPESCRIPT This is a temporary type to get rid of .d.ts file.
declare class AnimatedTextClass extends Component<AnimateProps<TextProps>> {
getNode(): Text;
}
export const AnimatedText = createAnimatedComponent(
Text as any
) as unknown as AnimatedText; // TODO TYPESCRIPT This temporary cast is to get rid of .d.ts file.
export type AnimatedText = typeof AnimatedTextClass & AnimatedTextClass & Text;