Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
resetCursor(): this {
console.warn('Console#resetCursor is deprecated. Use Reporter#resetCursor instead.');
this.out(cursor.to(0, screen.size().rows));
return this;
}
resetCursor(): this {
this.console.out(cursor.to(0, this.size().rows));
return this;
}