balena-cli
Version:
The official balena Command Line Interface
18 lines (17 loc) • 553 B
TypeScript
declare const _default: (stream?: NodeJS.WriteStream) => {
stream: NodeJS.WriteStream;
currentWindowSize: () => {
width: number | undefined;
height: number | undefined;
};
hideCursor: () => boolean;
showCursor: () => boolean;
cursorUp: (rows?: number) => boolean;
cursorDown: (rows?: number) => boolean;
write: (str: string) => boolean;
writeLine: (str: string) => boolean;
clearLine: () => boolean;
replaceLine: (str: string) => boolean;
deleteToEnd: () => boolean;
};
export = _default;