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.

8 lines (7 loc) 258 B
import { BaseError } from './baseError'; /** * Represents an error triggered when the dependency metadata servicing strategy is not suported. */ export declare class UnsupportedServicignStrategyError extends BaseError { constructor(message: string); }