/** * Log context types and interfaces. * This file contains all type definitions for logging context. */ export interface LogContext { pid?: number; serverName?: string; module?: string; sessionId?: string; traceId?: string; spanId?: string; caller?: string; } export type LogOptions = Omit; //# sourceMappingURL=log-context.d.ts.map