13 lines
201 B
TypeScript
Executable file
13 lines
201 B
TypeScript
Executable file
/**
|
|
Gracefully restore the CLI cursor on exit.
|
|
|
|
@example
|
|
```
|
|
import restoreCursor = require('restore-cursor');
|
|
|
|
restoreCursor();
|
|
```
|
|
*/
|
|
declare function restoreCursor(): void;
|
|
|
|
export = restoreCursor;
|