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 3995326 commit f279ba8Copy full SHA for f279ba8
packages/types/src/command.ts
@@ -2,6 +2,7 @@ import { AbortSignal } from "./abort";
2
import { HttpOptions } from "./http";
3
import { Handler, MiddlewareStack } from "./middleware";
4
import { MetadataBearer } from "./response";
5
+import { OperationModel } from "./protocol";
6
7
export interface CommandInput {
8
/**
@@ -35,7 +36,7 @@ export interface Command<
35
36
StreamType = Uint8Array
37
> {
38
readonly input: InputType;
-
39
+ readonly model: OperationModel;
40
resolveMiddleware(
41
stack: MiddlewareStack<ClientInput, ClientOutput, StreamType>,
42
configuration: ResolvedConfiguration
0 commit comments