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