aahook
Version:
A CLI tool that displays ASCII art when commands succeed or fail
15 lines • 524 B
JavaScript
;
/**
* Image conversion-related type definitions
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.CHARACTER_SETS = void 0;
// Predefined character sets for different detail levels
exports.CHARACTER_SETS = {
ascii: ' .:-=+*#%@',
extended: ' ░▒▓█',
blocks: ' ▁▂▃▄▅▆▇█',
braille: '⠀⠁⠂⠃⠄⠅⠆⠇⡀⡁⡂⡃⡄⡅⡆⡇⢀⢁⢂⢃⢄⢅⢆⢇⣀⣁⣂⣃⣄⣅⣆⣇',
custom: '' // User-defined
};
//# sourceMappingURL=image.js.map