pareto-core 0.1.240 → 0.1.242
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type Abort } from "./__internal/Abort.js";
|
|
2
2
|
import { type Raw_Optional_Value } from "./__internal/Raw_Optional_Value.js";
|
|
3
|
+
import { type Iterator } from "./__internal/refiner/Iterator.js";
|
|
3
4
|
import * as p_di from "./data.js";
|
|
4
5
|
export type Refiner<Result extends p_di.Value, Error extends p_di.Value, Input extends p_di.Value> = ($: Input, abort: Abort<Error>) => Result;
|
|
5
6
|
export type Refiner_With_Parameter<Result extends p_di.Value, Error extends p_di.Value, Input extends p_di.Value, Parameter extends p_di.Value> = ($: Input, abort: Abort<Error>, $p: Parameter) => Result;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {} from "./__internal/Abort.js";
|
|
2
2
|
import {} from "./__internal/Raw_Optional_Value.js";
|
|
3
|
+
import {} from "./__internal/refiner/Iterator.js";
|
|
3
4
|
import * as p_di from "./data.js";
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVmaW5lci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9pbnRlcmZhY2UvcmVmaW5lci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWMsTUFBTSx1QkFBdUIsQ0FBQTtBQUNsRCxPQUFPLEVBQTJCLE1BQU0sb0NBQW9DLENBQUE7QUFDNUUsT0FBTyxFQUFpQixNQUFNLGtDQUFrQyxDQUFBO0FBQ2hFLE9BQU8sS0FBSyxJQUFJLE1BQU0sV0FBVyxDQUFBIn0=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pareto-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.242",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"author": "Corno",
|
|
6
6
|
"description": "the core language constructs for the Pareto programming language (in TypeScript)",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"default": "./dist/implementation/*.js"
|
|
28
28
|
},
|
|
29
29
|
"./interface/*": {
|
|
30
|
-
"types": "./dist/interface/*.d.ts"
|
|
30
|
+
"types": "./dist/interface/*.d.ts",
|
|
31
|
+
"default": "./dist/interface/*.js"
|
|
31
32
|
},
|
|
32
33
|
"./temp/*": {
|
|
33
34
|
"types": "./dist/temp/*.d.ts",
|