@arwes/text
Version:
Futuristic Sci-Fi UI Web Framework
10 lines (9 loc) • 365 B
TypeScript
import { type Animation } from '@arwes/animated';
import type { AnimateTextProps } from '../types.js';
type AnimateTextSequenceProps = AnimateTextProps & {
blink?: boolean;
blinkDuration?: number;
};
declare const animateTextSequence: (props: AnimateTextSequenceProps) => Animation;
export type { AnimateTextSequenceProps };
export { animateTextSequence };