react-text-hacked
Version:
Hacked Text Effect
13 lines (12 loc) • 448 B
TypeScript
/// <reference types="react" />
export declare const defaultAlphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
type TextHackedEffectComponentProps = {
defaultText: string;
timeOut?: number;
autoStart?: boolean;
startOnHover?: boolean;
startAfterTimer?: number;
alphabet?: string;
};
declare const TextHackedEffectComponent: React.FC<TextHackedEffectComponentProps>;
export default TextHackedEffectComponent;