tatuka-components
Version:
this is a readme text
14 lines (13 loc) • 464 B
TypeScript
import { TextAnimationProps } from '../../types/component-types';
export default class TextAnimationCore {
text: string;
options: TextAnimationProps;
animationDelayTimes: number[];
randomAnimationTimesMap: Map<any, any>;
colors: string[];
constructor(text: string, options: TextAnimationProps);
init(): void;
getColor(): string;
getAnimationDelay(animationDelayIndex: number): number;
generateAnimationDelayTimes(): void;
}