Skip to content

Commit

Permalink
test: export type
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jun 6, 2024
1 parent 6c07ae7 commit 9804569
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import { de_PredictCommand, se_PredictCommand } from "../protocols/Aws_json1_1";
/**
* @public
*/
export { __MetadataBearer, $Command };
export type { __MetadataBearer };
export { $Command };
/**
* @public
*
Expand Down
4 changes: 2 additions & 2 deletions private/aws-protocoltests-json-machinelearning/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/* eslint-disable */
export * from "./MachineLearningClient";
export * from "./MachineLearning";
export { RuntimeExtension } from "./runtimeExtensions";
export { MachineLearningExtensionConfiguration } from "./extensionConfiguration";
export type { RuntimeExtension } from "./runtimeExtensions";
export type { MachineLearningExtensionConfiguration } from "./extensionConfiguration";
export * from "./commands";
export * from "./models";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import {
ServiceExceptionOptions as __ServiceExceptionOptions,
} from "@smithy/smithy-client";

export { __ServiceException, __ServiceExceptionOptions };
export type { __ServiceExceptionOptions };

export { __ServiceException };

/**
* @public
Expand Down

0 comments on commit 9804569

Please sign in to comment.