fuc-new/doc/node_modules/restore-cursor/index.d.ts
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

16 lines
319 B
TypeScript

/**
Gracefully restore the CLI cursor on exit.
Prevent the cursor you have hidden interactively from remaining hidden if the process crashes.
It does nothing if run in a non-TTY context.
@example
```
import restoreCursor from 'restore-cursor';
restoreCursor();
```
*/
export default function restoreCursor(): void;