UNPKG

aws-cdk

Version:

AWS CDK CLI, the command line tool for CDK apps

14 lines (13 loc) 350 B
/** * A class representing rewritable display lines */ export declare class RewritableBlock { private readonly stream; private lastHeight; private trailingEmptyLines; constructor(stream: NodeJS.WriteStream); get width(): number; get height(): number; displayLines(lines: string[]): void; removeEmptyLines(): void; }