Comparing version 0.5.1 to 0.5.2
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.5.2](https://github.com/ai-labs-team/mgFx/compare/mgfx@0.5.1...mgfx@0.5.2) (2020-04-02) | ||
### Bug Fixes | ||
* core: fix `#both` and `#value` fluent definitions ([0d123de](https://github.com/ai-labs-team/mgFx/commit/0d123de)) | ||
## [0.5.1](https://github.com/ai-labs-team/mgFx/compare/mgfx@0.5.0...mgfx@0.5.1) (2020-04-02) | ||
@@ -8,0 +19,0 @@ |
@@ -16,3 +16,3 @@ export * from 'fluenture'; | ||
bimap<C, D>(withLeft: (left: A) => C, withRight: (right: B) => D): Fluent<C, D>; | ||
both<C>(future: Future<A, C>): Fluent<A, [B, C]>; | ||
both<C, D>(future: Future<C, D>): Fluent<A | C, [D, B]>; | ||
cache(): this; | ||
@@ -31,4 +31,4 @@ chain<C>(fn: (value: B) => Future<A, C>): Fluent<A, C>; | ||
promise(): Promise<B>; | ||
value(withLeft: (reason: A) => any): Cancel; | ||
value(withRight: (value: B) => any): Cancel; | ||
} | ||
//# sourceMappingURL=fluenture.d.ts.map |
{ | ||
"name": "mgfx", | ||
"description": "Managed Side-Effects for JavaScript", | ||
"version": "0.5.1", | ||
"version": "0.5.2", | ||
"files": [ | ||
@@ -32,3 +32,3 @@ "dist" | ||
}, | ||
"gitHead": "b8c5dca9ed8ee5b9fe0e1e62267d42f7dcb921b3" | ||
"gitHead": "2d94c42affe84d4bf217e5989314bf38c0c8e94d" | ||
} |
Sorry, the diff of this file is not supported yet
60853