@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.
10 lines (9 loc) • 381 B
TypeScript
import { WithSyntax } from './withSyntax';
import { AsSyntax } from './asSyntax';
import { InSyntax } from './inSyntax';
import { WhenSyntax } from './whenSyntax';
/**
* Represents an with, as, in and when syntax to setup the dependencies, servicing, delivery and conditions.
*/
export interface WithAndAsAndInAndWhenSyntax extends WithSyntax, AsSyntax, InSyntax, WhenSyntax {
}