mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 01:17:23 +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;
|