UNPKG

@elsikora/cladi

Version:

ClaDI is a library for creating and managing classes in TypeScript.

15 lines 406 B
/** * Log options interface. * @see {@link https://elsikora.com/docs/cladi/services/logging} */ export interface ILoggerMethodOptions { /** * Optional context to include with the log. */ context?: Record<string, unknown>; /** * Optional source identifier (e.g. "React", "NestJS Scheduler"). */ source?: string; } //# sourceMappingURL=method-options.interface.d.ts.map