From 1010ced1ecb3f1c4c3efdd78fbc7aa9d03e4d5cf Mon Sep 17 00:00:00 2001 From: Eric Avdey Date: Sat, 21 Sep 2024 16:56:16 -0300 Subject: [PATCH] fix: re-export CloudantV1 from import in index --- index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 546d8e41..176fb93e 100644 --- a/index.ts +++ b/index.ts @@ -18,7 +18,8 @@ * @module cloudant-node-sdk */ -export { default as CloudantV1 } from './cloudant/v1'; +import { default as CloudantV1 } from './cloudant/v1'; +export { CloudantV1 }; export { BasicAuthenticator,