UNPKG

react-simple-typewriter

Version:

A simple react component for adding a nice typewriter effect to your project.

21 lines (20 loc) 392 B
export type State = { speed: number; text: string; count: number; }; export type Action = { type: 'DELAY'; payload: number; } | { type: 'TYPE'; payload: string; speed: number; } | { type: 'DELETE'; payload: string; speed: number; } | { type: 'COUNT'; }; export declare function reducer(state: State, action: Action): State;