From bba0f1ce3d084bd9982511820bd04523fabe3c6c Mon Sep 17 00:00:00 2001 From: Rafael Camara Date: Tue, 14 Jan 2025 17:28:55 +0100 Subject: [PATCH] feat: extend exported types --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 103bbd9..9252196 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,7 @@ +export type { GenericConstructor, InjectionKey } from './_shared/types'; export { Injectable } from './decorator/injectable'; export { Inject } from './decorator/inject'; export { xContainer } from './container/di-container'; export { Lifetime } from './container/lifetime'; -export type { IInjectableConfiguration } from './_shared/injectable.configuration'; \ No newline at end of file +export type { IInjectableConfiguration } from './_shared/injectable.configuration'; +export {IDependency} from './container/dependency'; \ No newline at end of file