UNPKG

@jems/di

Version:

An implementation of IoC pattern based on dependency injection that allows you to granulate and decouple your libraries or applications. Wrote using SOLID principles and a variety OOP patterns implementations.

9 lines (8 loc) 277 B
import { BaseError } from './baseError'; /** * Represents an error triggered when a cyclic dependency has been identified. */ export declare class CyclicDependencyError extends BaseError { cyclicStack: string[]; constructor(message: string, cyclicStack: string[]); }