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

backspace

Erasing on left side of cursor.

type BackspaceCommandOptions = {
    amount?: number; // default: 1 
    delay?: number; // delault: 0
    instant?: boolean; // delault: false
}

backspace({ amount: 3, delay: 120, instant: false })

PrevioustextNextdel

Last updated 3 months ago