File size: 392 Bytes
9ada4bc
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { InquirerReadline } from './read-line.type.js';
export default class ScreenManager {
    private readonly rl;
    private height;
    private extraLinesUnderPrompt;
    private cursorPos;
    constructor(rl: InquirerReadline);
    render(content: string, bottomContent?: string): void;
    checkCursorPos(): void;
    clean(): void;
    clearContent(): void;
    done(): void;
}