module IRB::Color

def clear(colorable: colorable?)

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

def clear: (colorable: true) -> String

This signature was generated using 1 sample from 1 application.

def clear(colorable: colorable?)
  return '' unless colorable
  "\e[#{CLEAR}m"
end