tty-strings
Version:
Tools for working with strings displayed in the terminal
14 lines • 461 B
TypeScript
/**
* A map of ansi SGR styles to their closing codes.
*
* @remarks
* Derived from {@link https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_(Select_Graphic_Rendition)_parameters}
* as well as {@link https://github.com/mintty/mintty/wiki/Tips#text-attributes-and-rendering}
*
*/
export declare const styleCodes: Map<string, string>;
/**
* An array of closing codes
*/
export declare const closingCodes: string[];
//# sourceMappingURL=ansiCodes.d.ts.map