UNPKG

@shahen.poghosyan/awilix

Version:

Extremely powerful dependency injection container.

9 lines (8 loc) 193 B
/** * Lifetime type. */ export declare type LifetimeType = 'SINGLETON' | 'TRANSIENT' | 'SCOPED'; /** * Lifetime types. */ export declare const Lifetime: Record<LifetimeType, LifetimeType>;