vibelogger
Version:
AI-Native Logging for LLM Agent Development - TypeScript/Node.js Implementation
19 lines • 620 B
JavaScript
/**
* TypeScript type definitions for VibeCoding Logger
*
* These types define the core interfaces while maintaining JSON compatibility
* with the Python implementation. The JSON field names use snake_case to match
* the Python version, while TypeScript code uses camelCase.
*/
/**
* Log levels supported by VibeCoding Logger
*/
export var LogLevel;
(function (LogLevel) {
LogLevel["DEBUG"] = "DEBUG";
LogLevel["INFO"] = "INFO";
LogLevel["WARNING"] = "WARNING";
LogLevel["ERROR"] = "ERROR";
LogLevel["CRITICAL"] = "CRITICAL";
})(LogLevel || (LogLevel = {}));
//# sourceMappingURL=types.js.map