class Reline::ANSI

def self.move_cursor_down(x)

Experimental RBS support (using type sampling data from the type_fusion project).

def self.move_cursor_down: (Integer x) -> Integer

This signature was generated using 1 sample from 1 application.

def self.move_cursor_down(x)
  if x > 0
    @@output.write "\e[#{x}B"
  elsif x < 0
    move_cursor_up(-x)
  end
end