| 1 | export const beep: string;
|
|---|
| 2 | export const clear: string;
|
|---|
| 3 |
|
|---|
| 4 | export namespace cursor {
|
|---|
| 5 | export const left: string;
|
|---|
| 6 | export const hide: string;
|
|---|
| 7 | export const show: string;
|
|---|
| 8 | export const save: string;
|
|---|
| 9 | export const restore: string;
|
|---|
| 10 |
|
|---|
| 11 | export function to(x: number, y?: number): string;
|
|---|
| 12 | export function move(x: number, y: number): string;
|
|---|
| 13 | export function up(count?: number): string;
|
|---|
| 14 | export function down(count?: number): string;
|
|---|
| 15 | export function forward(count?: number): string;
|
|---|
| 16 | export function backward(count?: number): string;
|
|---|
| 17 | export function nextLine(count?: number): string;
|
|---|
| 18 | export function prevLine(count?: number): string;
|
|---|
| 19 | }
|
|---|
| 20 |
|
|---|
| 21 | export namespace scroll {
|
|---|
| 22 | export function up(count?: number): string;
|
|---|
| 23 | export function down(count?: number): string;
|
|---|
| 24 | }
|
|---|
| 25 |
|
|---|
| 26 | export namespace erase {
|
|---|
| 27 | export const screen: string;
|
|---|
| 28 | export const line: string;
|
|---|
| 29 | export const lineEnd: string;
|
|---|
| 30 | export const lineStart: string;
|
|---|
| 31 |
|
|---|
| 32 | export function up(count?: number): string;
|
|---|
| 33 | export function down(count?: number): string;
|
|---|
| 34 | export function lines(count: number): string;
|
|---|
| 35 | }
|
|---|