UNPKG

@elsikora/cladi

Version:

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

13 lines 426 B
import type { ILogger } from '../../../domain/interface/index'; /** * The options for the base container. * @see {@link https://elsikora.com/docs/cladi/core-concepts/container} for more details. */ export interface IBaseContainerOptions { /** * The logger to use for the container. * @default new ConsoleLoggerService() */ logger?: ILogger; } //# sourceMappingURL=container-options.interface.d.ts.map