@naturalcycles/js-lib
Advanced tools
Comparing version 8.13.0 to 8.13.1
@@ -0,1 +1,8 @@ | ||
## [8.13.1](https://github.com/NaturalCycles/js-lib/compare/v8.13.0...v8.13.1) (2020-02-13) | ||
### Bug Fixes | ||
* Deferred.resolve interface ([a152654](https://github.com/NaturalCycles/js-lib/commit/a152654d665bae348f1fb1038fd55b0c51f7adf4)) | ||
# [8.13.0](https://github.com/NaturalCycles/js-lib/compare/v8.12.0...v8.13.0) (2020-01-14) | ||
@@ -2,0 +9,0 @@ |
export interface Deferred<T = void> { | ||
promise: Promise<T>; | ||
resolve(a: T): void; | ||
resolve(a?: T): void; | ||
reject(e?: Error): void; | ||
@@ -5,0 +5,0 @@ } |
{ | ||
"name": "@naturalcycles/js-lib", | ||
"version": "8.13.0", | ||
"version": "8.13.1", | ||
"scripts": { | ||
@@ -14,3 +14,3 @@ "build-prod": "build-prod-esm-cjs" | ||
"benchmark": "^2.1.4", | ||
"jest": "^24.1.0", | ||
"jest": "^25.1.0", | ||
"rxjs": "^6.5.2" | ||
@@ -17,0 +17,0 @@ }, |
export interface Deferred<T = void> { | ||
promise: Promise<T> | ||
resolve(a: T): void | ||
resolve(a?: T): void | ||
reject(e?: Error): void | ||
@@ -5,0 +5,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
375178