From ef4a2295bf19d3bed753e75bb221af4027684ce6 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Wed, 2 Apr 2025 20:17:59 +0200 Subject: [PATCH] feat: Export ImplementsStatic helper function --- src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.ts b/src/index.ts index 12804a6..a5d7054 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,6 +8,9 @@ export * from './decorators/Inject'; export * from './decorators/Register'; export * from './decorators/RegisterInstance'; +// Helper +export * from './helper/ImplementsStatic'; + // Functions export * from './functions/resolve'; export * from './functions/register';