@elsikora/cladi
Version:
Zero-dependency TypeScript DI toolkit with typed tokens and scoped lifecycles.
11 lines • 519 B
TypeScript
import type { ILogger } from '../../../domain/interface/index';
import type { IConsoleLoggerOptions } from '../../../infrastructure/interface/index';
/**
* Creates a new logger instance.
* @param {IConsoleLoggerOptions} [options] - The options to use for the logger.
* @default
* @returns {ILogger} A new logger instance.
* @see {@link https://elsikora.com/docs/cladi/services/logging}
*/
export declare function createLogger(options?: IConsoleLoggerOptions): ILogger;
//# sourceMappingURL=logger.utility.d.ts.map