UNPKG

193 BTypeScriptView Raw
1/**
2 * Lifetime type.
3 */
4export declare type LifetimeType = 'SINGLETON' | 'TRANSIENT' | 'SCOPED';
5/**
6 * Lifetime types.
7 */
8export declare const Lifetime: Record<LifetimeType, LifetimeType>;