@ertekinno/human-like
Version:
A sophisticated React typewriter effect library with realistic human typing behavior, mobile/desktop keyboards, and comprehensive theming support
13 lines (12 loc) • 398 B
TypeScript
import { default as React } from 'react';
interface KeyboardSimulationDemoProps {
text?: string;
speed?: number;
mistakeFrequency?: number;
keyboardMode?: 'mobile' | 'desktop';
theme?: 'light' | 'dark';
autoStart?: boolean;
}
export declare const KeyboardSimulationDemo: React.FC<KeyboardSimulationDemoProps>;
export {};
//# sourceMappingURL=KeyboardSimulationDemo.d.ts.map