react-native-typewriter-effect
Version:
Typing animation library for React Native
14 lines • 508 B
TypeScript
import React from 'react';
import { type TextStyle, type StyleProp } from 'react-native';
export type TypeWriterEffectProps = {
content: string;
maxDelay?: number;
minDelay?: number;
onTyped?: (char: string, currentCharIndex: number) => void;
onTypingEnd?: () => void;
style?: StyleProp<TextStyle>;
vibration?: boolean;
backspaceEffect?: boolean;
};
export default function TypeWriterEffect(props: TypeWriterEffectProps): React.JSX.Element;
//# sourceMappingURL=index.d.ts.map