UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

14 lines (13 loc) 442 B
/** * Force line returns at specific width. This function is ANSI code friendly and it'll * ignore invisible codes during width calculation. * @param {string} content * @param {number} width * @return {string} */ export declare function breakLines(content: string, width: number): string; /** * Returns the width of the active readline, or 80 as default value. * @returns {number} */ export declare function readlineWidth(): number;