Sylvain Filoni
update gradio client
9ada4bc
raw
history blame
392 Bytes
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;
}