charmlog
Version:
Library to improve logging
34 lines • 1.19 kB
TypeScript
export declare const hexRegex: RegExp;
export declare const color: {
readonly orange: "\u001B[38;2;255;127;0m";
readonly red: "\u001B[38;2;255;0;0m";
readonly yellow: "\u001B[38;2;255;255;0m";
readonly green: "\u001B[38;2;0;255;0m";
readonly blue: "\u001B[38;2;0;0;255m";
readonly magenta: "\u001B[38;2;187;38;73m";
readonly cyan: "\u001B[38;2;0;255;255m";
readonly white: "\u001B[38;2;255;255;255m";
readonly black: "\u001B[38;2;0;0;0m";
readonly ligth_red: "\u001B[38;2;255;40;65m";
};
export declare const logLevelColors: {
readonly debug: "\u001B[38;2;255;255;255m";
readonly info: "\u001B[38;2;0;0;255m";
readonly warning: "\u001B[38;2;255;127;0m";
readonly error: "\u001B[38;2;255;40;65m";
readonly critical: "\u001B[38;2;255;0;0m";
};
export declare const TEXT_DECORATIONS: {
readonly NONE: "none";
readonly UNDERLINE: "underline";
readonly LINE_THROUGH: "line-through";
};
export declare const FONT_WEIGHTS: {
readonly NORMAL: "normal";
readonly BOLD: "bold";
};
export declare const STYLES: {
readonly NORMAL: "normal";
readonly ITALIC: "italic";
};
//# sourceMappingURL=constants.d.ts.map