exupery-core-types 0.1.1 → 0.1.2

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.
@@ -5,11 +5,11 @@
5
5
  export interface Async_Value<T> {
6
6
  /**
7
7
  * maps the current async value into a new async value
8
- * @param $v callback that transforms the actual value into a new Async_Value
8
+ * @param handle_value callback that transforms the actual value into a new Async_Value
9
9
  */
10
- map<NT>($v: ($: T) => Async_Value<NT>): Async_Value<NT>;
10
+ map<NT>(handle_value: ($: T) => Async_Value<NT>): Async_Value<NT>;
11
11
  /**
12
12
  * This method is only to be used by resources
13
13
  */
14
- __execute($i: ($: T) => void): void;
14
+ __start(on_value: ($: T) => void): void;
15
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exupery-core-types",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Corno",
6
6
  "description": "core types for Exupery",