From 3fe14874743c2e402e3f532a7040efb745f86505 Mon Sep 17 00:00:00 2001 From: Andrey Melikhov Date: Tue, 3 Dec 2024 16:54:40 +0300 Subject: [PATCH] feat: export SpanKind (#66) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 85b0984..f68a7c8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ export {NodeKit} from './nodekit'; export {AppContext} from './lib/context'; -export {AppConfig, AppContextParams, AppDynamicConfig} from './types'; +export {AppConfig, AppContextParams, AppDynamicConfig, SpanKind} from './types'; export {AppError} from './lib/app-error'; export {DynamicConfigSetup} from './lib/dynamic-config-poller'; export {NodeKitLogger} from './lib/logging';