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) 248 B
import { InSyntax } from './inSyntax'; import { WhenSyntax } from './whenSyntax'; /** * Represents an as and in and when syntax to setup the delivery strategies and conditions. */ export interface InAndWhenSyntax extends InSyntax, WhenSyntax { }