UNPKG
@shahen.poghosyan/awilix
Version:
latest (4.2.5)
4.2.5
4.2.4
4.2.3
4.2.2
Extremely powerful dependency injection container.
github.com/jeffijoe/awilix
jeffijoe/awilix
@shahen.poghosyan/awilix
/
lib
/
lifetime.d.ts
9 lines
(8 loc)
•
193 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * Lifetime
type
. */
export
declare
type
LifetimeType =
'SINGLETON'
|
'TRANSIENT'
|
'SCOPED'
; /** * Lifetime types. */
export
declare
const Lifetime: Record<LifetimeType, LifetimeType>;