mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08: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;
|