From 374109c773494815decb901731a886b64d0379a1 Mon Sep 17 00:00:00 2001 From: Seifeldin Sabry <93074813+Seifeldin-Sabry@users.noreply.github.com> Date: Thu, 6 Mar 2025 08:03:17 +0100 Subject: [PATCH] Update index.ts exporting type to surpress the TS error: 'Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.' --- src/authentication/azureTokenCredentials/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentication/azureTokenCredentials/index.ts b/src/authentication/azureTokenCredentials/index.ts index 6d672ef68..1c5984375 100644 --- a/src/authentication/azureTokenCredentials/index.ts +++ b/src/authentication/azureTokenCredentials/index.ts @@ -4,5 +4,5 @@ * See License in the project root for license information. * ------------------------------------------------------------------------------------------- */ -export { TokenCredentialAuthenticationProviderOptions } from "./ITokenCredentialAuthenticationProviderOptions"; +export type { TokenCredentialAuthenticationProviderOptions } from "./ITokenCredentialAuthenticationProviderOptions"; export { TokenCredentialAuthenticationProvider } from "./TokenCredentialAuthenticationProvider";