Interface TypingEffectProps

The TypingEffect interface defines the props for the TypingEffect component.

The text to display with a typing effect.

The typing speed in milliseconds.

interface TypingEffectProps {
    speed?: number;
    text: string;
}

Properties

Properties

speed?: number
text: string