Change speed or behavior for specific text segments
const typer = new TypeMorph({
parent: "target",
speed: 100,
});
await typer.type("This sentence uses the default slower speed.");
await typer.type(" This one overrides it to be very fast!", {
speed: 20,
cursorChar: "_",
});