@aws-sdk/types
Advanced tools
Comparing version 3.198.0 to 3.200.0
@@ -79,8 +79,8 @@ import { Endpoint } from "./http"; | ||
/** | ||
* Indicates that any members of type T | ||
* that were of type T[StreamKey] have been extended | ||
* Indicates that the member of type T with | ||
* key StreamKey have been extended | ||
* with the SdkStreamMixin helper methods. | ||
*/ | ||
export declare type WithSdkStreamMixin<T, StreamKey extends keyof T> = { | ||
[key in keyof T]: T[key] extends T[StreamKey] ? SdkStream<T[StreamKey]> : T[key]; | ||
[key in keyof T]: key extends StreamKey ? SdkStream<T[StreamKey]> : T[key]; | ||
}; | ||
@@ -87,0 +87,0 @@ /** |
@@ -42,5 +42,3 @@ import { Endpoint } from "./http"; | ||
export declare type WithSdkStreamMixin<T, StreamKey extends keyof T> = { | ||
[key in keyof T]: T[key] extends T[StreamKey] | ||
? SdkStream<T[StreamKey]> | ||
: T[key]; | ||
[key in keyof T]: key extends StreamKey ? SdkStream<T[StreamKey]> : T[key]; | ||
}; | ||
@@ -47,0 +45,0 @@ export interface SdkStreamMixinInjector { |
{ | ||
"name": "@aws-sdk/types", | ||
"version": "3.198.0", | ||
"version": "3.200.0", | ||
"main": "./dist-cjs/index.js", | ||
@@ -5,0 +5,0 @@ "module": "./dist-es/index.js", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
177317
2247