UNPKG

react-native-dot-typing

Version:
17 lines (16 loc) 448 B
/// <reference types="react" /> import { ViewStyle } from "react-native"; interface DotTypingAnimationProps { style?: ViewStyle; dotStyles?: ViewStyle; dotColor?: string; dotMargin?: number; dotAmplitude?: number; dotSpeed?: number; show?: boolean; dotRadius?: number; dotY?: number; dotX?: number; } export declare function DotTypingAnimation(props: DotTypingAnimationProps): JSX.Element | null; export {};