UNPKG

ts-ioc-container

Version:

Fast, lightweight TypeScript dependency injection container with a clean API, scoped lifecycles, decorators, tokens, hooks, lazy injection, customizable providers, and no global container objects.

7 lines (6 loc) 236 B
import { ContainerError } from './ContainerError'; export declare class ProviderDisposedError extends ContainerError { name: string; static assert(isTrue: boolean, failMessage: string): void; constructor(message: string); }