source: frontend/node_modules/sisteransi/src/sisteransi.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.1 KB
Line 
1export const beep: string;
2export const clear: string;
3
4export 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
21export namespace scroll {
22 export function up(count?: number): string;
23 export function down(count?: number): string;
24}
25
26export 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}
Note: See TracBrowser for help on using the repository browser.