From 43b33c5a959f89a91000d78d97bcfeb0db45d388 Mon Sep 17 00:00:00 2001 From: Christoph Gysin Date: Mon, 19 Jul 2021 11:49:16 +0300 Subject: [PATCH] fix(smithy-client): export type explicitly fixes #2597 --- packages/smithy-client/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/smithy-client/src/index.ts b/packages/smithy-client/src/index.ts index c72b2f3e0a18f..5c6a6545283e1 100644 --- a/packages/smithy-client/src/index.ts +++ b/packages/smithy-client/src/index.ts @@ -9,4 +9,4 @@ export * from "./ser-utils"; export * from "./date-utils"; export * from "./split-every"; export * from "./constants"; -export { DocumentType, SdkError, SmithyException } from "@aws-sdk/types"; +export type { DocumentType, SdkError, SmithyException } from "@aws-sdk/types";