exupery-core-async 0.1.21 → 0.1.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,7 @@ export interface Unsafe_Command_Result<E> {
14
14
  * which would switch to the safe context
15
15
  */
16
16
  process_exception<NE>(handle: ($: E, init: Safe_Command_Result) => Safe_Command_Result, map: ($: E) => NE): Unsafe_Command_Result<NE>;
17
- throw_exception<E>($: E, init: Unsafe_Command_Result<E>): Unsafe_Command_Result<E>;
17
+ throw_exception<E>($: E): Unsafe_Command_Result<E>;
18
18
  catch(handle_exception: ($: E, init: Safe_Command_Result) => Safe_Command_Result): Safe_Command_Result;
19
19
  then(handle: (init: Unsafe_Command_Result<E>) => Unsafe_Command_Result<E>): Unsafe_Command_Result<E>;
20
20
  then_safe(handle: (init: Safe_Command_Result) => Safe_Command_Result): Unsafe_Command_Result<E>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exupery-core-async",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Corno",
6
6
  "description": "async types for Exupery",