shelving
Version:
Toolkit for using data in JavaScript.
16 lines (15 loc) • 722 B
TypeScript
export declare const ANSI_DEFAULT = "\u001B[39m";
export declare const ANSI_BLACK = "\u001B[30m";
export declare const ANSI_RED = "\u001B[31m";
export declare const ANSI_GREEN = "\u001B[32m";
export declare const ANSI_YELLOW = "\u001B[33m";
export declare const ANSI_BLUE = "\u001B[34m";
export declare const ANSI_MAGENTA = "\u001B[35m";
export declare const ANSI_CYAN = "\u001B[36m";
export declare const ANSI_WHITE = "\u001B[37m";
export declare const ANSI_BOLD = "\u001B[1m";
export declare const ANSI_ITALIC = "\u001B[3m";
export declare const ANSI_UNDERLINE = "\u001B[4m";
export declare const ANSI_STRIKE = "\u001B[9m";
export declare const ANSI_INVERSE = "\u001B[7m";
export declare const ANSI_RESET = "\u001B[0m";