From 3dbd8c5c0dccb8bdc6fdd729286af40a616b6cab Mon Sep 17 00:00:00 2001 From: Philipp Langer Date: Wed, 7 May 2025 08:48:09 +0200 Subject: [PATCH] feat: export http client constructor --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 53b9947..c4c9289 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,6 +9,7 @@ import { Typeform } from './typeform-types' import { Insights } from './insights' export { Typeform } from './typeform-types' +export { clientConstructor } from './create-client' export const createClient = (args: Typeform.ClientArg = { token: null }) => { const http = clientConstructor(args)