mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-02 04:08:23 -05:00
14 lines
201 B
TypeScript
14 lines
201 B
TypeScript
/**
|
|
Gracefully restore the CLI cursor on exit.
|
|
|
|
@example
|
|
```
|
|
import restoreCursor = require('restore-cursor');
|
|
|
|
restoreCursor();
|
|
```
|
|
*/
|
|
declare function restoreCursor(): void;
|
|
|
|
export = restoreCursor;
|