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) 311 B
import { AliasMetadataMember } from './aliasMetadataMember'; /** * Represents metadata for the aliases, that state how registered references should behalve. */ export interface AliasMetadata { /** * Get or set the memebers that should provide the alias. */ members: AliasMetadataMember[]; }