@@ -69,9 +69,9 @@ interface AwsSdkJestMockBaseMatchers<R> extends Record<string, Function> {
69
69
toHaveReceivedCommandWith < TCmdInput extends object ,
70
70
TCmdOutput extends MetadataBearer > (
71
71
command : new ( input : TCmdInput ) => AwsCommand < TCmdInput , TCmdOutput > ,
72
- input : {
72
+ input : Partial < {
73
73
[ Property in keyof TCmdInput ] : unknown ;
74
- } ,
74
+ } > ,
75
75
) : R ;
76
76
77
77
/**
@@ -97,9 +97,9 @@ interface AwsSdkJestMockBaseMatchers<R> extends Record<string, Function> {
97
97
TCmdOutput extends MetadataBearer > (
98
98
call : number ,
99
99
command : new ( input : TCmdInput ) => AwsCommand < TCmdInput , TCmdOutput > ,
100
- input : {
100
+ input : Partial < {
101
101
[ Property in keyof TCmdInput ] : unknown ;
102
- } ,
102
+ } > ,
103
103
) : R ;
104
104
105
105
/**
@@ -124,9 +124,9 @@ interface AwsSdkJestMockBaseMatchers<R> extends Record<string, Function> {
124
124
toHaveReceivedNthSpecificCommandWith < TCmdInput extends object , TCmdOutput extends MetadataBearer > (
125
125
call : number ,
126
126
command : new ( input : TCmdInput ) => AwsCommand < TCmdInput , TCmdOutput > ,
127
- input : {
127
+ input : Partial < {
128
128
[ Property in keyof TCmdInput ] : unknown ;
129
- } ,
129
+ } > ,
130
130
) : R ;
131
131
132
132
/**
@@ -159,9 +159,9 @@ interface AwsSdkJestMockAliasMatchers<R> extends Record<string, Function> {
159
159
toReceiveCommandWith < TCmdInput extends object ,
160
160
TCmdOutput extends MetadataBearer > (
161
161
command : new ( input : TCmdInput ) => AwsCommand < TCmdInput , TCmdOutput > ,
162
- input : {
162
+ input : Partial < {
163
163
[ Property in keyof TCmdInput ] : unknown ;
164
- } ,
164
+ } > ,
165
165
) : R ;
166
166
167
167
/**
@@ -171,9 +171,9 @@ interface AwsSdkJestMockAliasMatchers<R> extends Record<string, Function> {
171
171
TCmdOutput extends MetadataBearer > (
172
172
call : number ,
173
173
command : new ( input : TCmdInput ) => AwsCommand < TCmdInput , TCmdOutput > ,
174
- input : {
174
+ input : Partial < {
175
175
[ Property in keyof TCmdInput ] : unknown ;
176
- } ,
176
+ } > ,
177
177
) : R ;
178
178
179
179
/**
@@ -182,9 +182,9 @@ interface AwsSdkJestMockAliasMatchers<R> extends Record<string, Function> {
182
182
toReceiveNthSpecificCommandWith < TCmdInput extends object , TCmdOutput extends MetadataBearer > (
183
183
call : number ,
184
184
command : new ( input : TCmdInput ) => AwsCommand < TCmdInput , TCmdOutput > ,
185
- input : {
185
+ input : Partial < {
186
186
[ Property in keyof TCmdInput ] : unknown ;
187
- } ,
187
+ } > ,
188
188
) : R ;
189
189
190
190
/**
0 commit comments