We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e88913 commit 9cdf8e2Copy full SHA for 9cdf8e2
packages/smithy-client/src/command.ts
@@ -2,11 +2,11 @@ import { MiddlewareStack } from "@aws-sdk/middleware-stack";
2
import { Command as ICommand, MetadataBearer, Handler } from "@aws-sdk/types";
3
4
export abstract class Command<
5
- ClientInput extends object,
6
Input extends ClientInput,
7
- ClientOutput extends MetadataBearer,
8
Output extends ClientOutput,
9
- ResolvedClientConfiguration
+ ResolvedClientConfiguration,
+ ClientInput extends object = any,
+ ClientOutput extends MetadataBearer = any
10
>
11
implements
12
ICommand<
0 commit comments