Typing Flow Docs
  • Introduction
    • Get started
    • Configuration
    • Commands
      • text
      • backspace
      • del
      • cursorLeft
      • cursorRight
      • delay
      • home
      • end
    • Examples
  • Features
    • Renderers
    • Hooks
  • Plugins
    • chain
Powered by GitBook
On this page
  1. Introduction
  2. Commands

text

Typing privided text.

type TextCommandOptions = {
    delay?: number; // delault: 0
    instant?: boolean; // delault: false
}

text(
    "Hello, Typing Flow",
    { delay: 120, instant: false } 
)

PreviousCommandsNextbackspace

Last updated 3 months ago