You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(typing): more advanced typing for return types
more advanced typing for cases which need to manipulate the return type of exec() (or similar), before the update update().returnValues('ALL_NEW').exec() returned `T` but when another command was added to the chain the type went back to `void` when using `this` as return type the information will be prevented.
@@ -43,7 +44,7 @@ export class BatchGetSingleTableRequest<T> extends BaseRequest<
43
44
/**
44
45
* Determines the read consistency model: If set to true, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.
@@ -88,18 +89,18 @@ export class BatchGetSingleTableRequest<T> extends BaseRequest<
88
89
* @param backoffTimer when unprocessed keys are returned the next value of backoffTimer is used to determine how many time slots to wait before doing the next request
89
90
* @param throttleTimeSlot the duration of a time slot in ms
@@ -27,7 +27,7 @@ export class GetRequest<T> extends StandardRequest<T, DynamoDB.GetItemInput, Get
27
27
/**
28
28
* Determines the read consistency model: If set to true, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.
0 commit comments