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.

11 lines (10 loc) 241 B
/** * Represents a reference of the identifier that is been modified. */ export interface IdentifierReference { /** * Returns the identifier. * @returns {string} The context identifier. */ getIdentifier(): string; }