UNPKG

526 BTypeScriptView Raw
1interface Erase {
2 /**
3 * Entire screen
4 */
5 readonly screen: string;
6 /**
7 * Left portion of a screen
8 */
9 readonly screenLeft: string;
10 /**
11 * Right portion of a screen
12 */
13 readonly screenRight: string;
14 /**
15 * Current line
16 */
17 readonly line: string;
18 /**
19 * Right portion of current line
20 */
21 readonly lineLeft: string;
22 /**
23 * Left portion of current line
24 */
25 readonly lineRight: string;
26}
27
28declare const erase: Erase;
29export = erase;