less-pager-mini
Version: 
A scrollable terminal pager for Node.js CLI apps (terminal only)
16 lines (15 loc) • 733 B
TypeScript
export declare const ASCII_REGEX: RegExp;
export declare const STYLE_REGEX: RegExp;
export declare const STYLE_REGEX_G: RegExp;
export declare const CONSOLE_TITLE_START = "\u001B]0;";
export declare const CONSOLE_TITLE_END = "\u0007";
export declare const CONSOLE_TITLE_RESET: string;
export declare const ALTERNATE_CONSOLE_ON = "\u001B[?1049h";
export declare const ALTERNATE_CONSOLE_OFF = "\u001B[?1049l";
export declare const INVERSE_ON = "\u001B[7m";
export declare const INVERSE_OFF = "\u001B[0m";
export declare const BOLD_ON = "\u001B[1m";
export declare const BOLD_OFF = "\u001B[0m";
export declare const UNDERLINE_ON = "\u001B[4m";
export declare const UNDERLINE_OFF = "\u001B[24m";
export declare const END_MARKER: string;