UNPKG

contexify

Version:

A TypeScript library providing a powerful dependency injection container with context-based IoC capabilities, inspired by LoopBack's Context system.

19 lines (17 loc) 445 B
/** * Contexify - Context module for dependency injection * * @packageDocumentation */ // Export all modules export * from './binding/index.js'; export * from './context/index.js'; export * from './inject/index.js'; export * from './interceptor/index.js'; export * from './provider/index.js'; export * from './resolution/index.js'; export * from './utils/index.js'; /** * Version of the library */ export { VERSION } from './version.js';