recoder-code
Version:
Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities
17 lines (16 loc) • 442 B
TypeScript
declare enum LogContexts {
application = "application",
hostname = "hostname",
logLevel = "logLevel",
namespace = "namespace",
package = "package"
}
interface LogContext {
[]: any;
[]?: string;
[]?: string;
[]?: number;
[]?: string;
[]?: string;
}
export { LogContext, LogContexts };