tinify-client
Version:
A CLI to compress your images not only intelligently but also to the EXTREME!
18 lines (17 loc) • 550 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EOS = exports.ITALIC = exports.UNDERLINED = exports.BOLD = exports.RED = exports.YELLOW = exports.GREEN = void 0;
const GREEN = '\x1b[0;32m';
exports.GREEN = GREEN;
const YELLOW = '\x1b[1;33m';
exports.YELLOW = YELLOW;
const RED = '\x1b[0;31m';
exports.RED = RED;
const EOS = '\x1b[0m';
exports.EOS = EOS;
const BOLD = '\x1b[1m';
exports.BOLD = BOLD;
const UNDERLINED = '\x1b[4m';
exports.UNDERLINED = UNDERLINED;
const ITALIC = '\x1b[3m';
exports.ITALIC = ITALIC;