UNPKG

@wgtechlabs/log-engine

Version:

A lightweight, security-first logging utility with automatic data redaction for Node.js applications - the first logging library with built-in PII protection.

32 lines 997 B
/** * ANSI color codes and color management for terminal output * Provides consistent color definitions used throughout the formatting system */ /** * ANSI color codes for terminal output styling * Used to create colorized console output with consistent theming */ export declare const colors: { readonly reset: "\u001B[0m"; readonly dim: "\u001B[2m"; readonly red: "\u001B[31m"; readonly yellow: "\u001B[33m"; readonly blue: "\u001B[34m"; readonly magenta: "\u001B[35m"; readonly cyan: "\u001B[36m"; readonly white: "\u001B[37m"; readonly gray: "\u001B[90m"; readonly green: "\u001B[32m"; }; /** * Color scheme configuration * Maps semantic meanings to specific colors for consistent theming */ export declare const colorScheme: { readonly timestamp: "\u001B[90m"; readonly timeString: "\u001B[36m"; readonly system: "\u001B[33m"; readonly data: "\u001B[2m"; readonly reset: "\u001B[0m"; }; //# sourceMappingURL=colors.d.ts.map