typeit
Version:
The most versatile animated typing utility on the planet.
9 lines (8 loc) • 322 B
TypeScript
import { El, CursorOptions } from "../types";
interface rebuildCursorAnimationArgs {
cursor: El | undefined;
cursorOptions: CursorOptions;
options: any;
}
declare let rebuildCursorAnimation: ({ cursor, options, cursorOptions, }: rebuildCursorAnimationArgs) => Animation;
export default rebuildCursorAnimation;