@elsikora/cladi
Version:
ClaDI is a library for creating and managing classes in TypeScript.
13 lines • 413 B
TypeScript
import type { ILogger } from '../../../domain/interface/index';
/**
* Base registry creation options.
* @see {@link https://elsikora.com/docs/cladi/core-concepts/registry} for more details.
*/
export interface IBaseRegistryOptions {
/**
* The logger to use for logging.
* @default new ConsoleLoggerService()
*/
logger?: ILogger;
}
//# sourceMappingURL=registry-options.interface.d.ts.map