react-native-animateable-text
Version:
A fork of React Native's <Text/> component that supports Animated Values
18 lines (17 loc) • 648 B
TypeScript
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
* @format
*/
/// <reference types="react" />
declare const DeprecatedTextPropTypes: any;
import type { AnimateableTextProps } from './TextProps';
declare type TextStatics = {
propTypes: typeof DeprecatedTextPropTypes;
};
export declare const AnimateableText: import("react").ComponentClass<AnimateableTextProps, import("react").Component<AnimateableTextProps, {}, any> & Readonly<import("react-native").NativeMethods>> & TextStatics;
export {};