@elsikora/cladi
Version:
Zero-dependency TypeScript DI toolkit with typed tokens and scoped lifecycles.
15 lines • 406 B
TypeScript
/**
* 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