@agoric/eventual-send
Advanced tools
Comparing version 0.13.11 to 0.13.12
@@ -6,2 +6,10 @@ # Change Log | ||
## [0.13.12](https://github.com/Agoric/agoric-sdk/compare/@agoric/eventual-send@0.13.11...@agoric/eventual-send@0.13.12) (2021-05-05) | ||
**Note:** Version bump only for package @agoric/eventual-send | ||
## [0.13.11](https://github.com/Agoric/agoric-sdk/compare/@agoric/eventual-send@0.13.10...@agoric/eventual-send@0.13.11) (2021-04-22) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@agoric/eventual-send", | ||
"version": "0.13.11", | ||
"version": "0.13.12", | ||
"description": "Extend a Promise class to implement the eventual-send API", | ||
@@ -29,5 +29,5 @@ "parsers": { | ||
"devDependencies": { | ||
"@agoric/assert": "^0.2.9", | ||
"@agoric/install-ses": "^0.5.10", | ||
"@agoric/swingset-vat": "^0.16.4", | ||
"@agoric/assert": "^0.2.10", | ||
"@agoric/install-ses": "^0.5.11", | ||
"@agoric/swingset-vat": "^0.17.0", | ||
"ava": "^3.12.1", | ||
@@ -68,3 +68,3 @@ "esm": "^3.2.7", | ||
}, | ||
"gitHead": "cd015a9c4ee8f2d52f7b99d265f82ebe27bbbeef" | ||
"gitHead": "05fed590d4240c9cdf77aab865cc35d94c881fa8" | ||
} |
@@ -9,2 +9,10 @@ /* eslint-disable */ | ||
// Type for an object that must only be invoked with E. It supports a given | ||
// interface but declares all the functions as asyncable. | ||
export type EOnly<T> = T extends (...args: infer P) => infer R ? | ||
(...args: P) => ERef<R> | EOnly<R> | ||
: T extends Record<string | number | symbol, Function> ? ERef<{ | ||
[K in keyof T]: EOnly<T[K]> | ||
}> : ERef<T>; | ||
type Unpromise<T> = T extends ERef<infer U> ? U : T; | ||
@@ -11,0 +19,0 @@ |
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
112534
2297