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.

12 lines (11 loc) 214 B
import { Kernel } from './kernel'; /** * Represents a reference of the kernel. */ export interface KernelReference { /** * Returns the kernel. * @returns {Kernel} */ getKernel(): Kernel; }