pareto-core 0.1.267 → 0.1.268

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.
@@ -0,0 +1,10 @@
1
+ export * from "./__internal/sync/data_switch.js";
2
+ export * as from from "./__internal/refiner/from.js";
3
+ export * as literal from "./__internal/sync/literal.js";
4
+ import { type Value } from "../interface/__internal/schema/Value.js";
5
+ import type { Abort } from "../interface/__internal/Abort.js";
6
+ import type { List_Of_Characters } from "./serializer.js";
7
+ export type Deserializer<Result extends Value, Error extends Value> = ($: List_Of_Characters, abort: Abort<Error>) => Result;
8
+ export type Deserializer_With_Parameter<Result extends Value, Error extends Value, Parameter extends Value> = ($: List_Of_Characters, abort: Abort<Error>, $p: Parameter) => Result;
9
+ export type Deserializer_Without_Error<Result extends Value> = ($: List_Of_Characters) => Result;
10
+ export type Deserializer_Without_Error_With_Parameter<Result extends Value, Parameter extends Value> = ($: List_Of_Characters, $p: Parameter) => Result;
@@ -0,0 +1,5 @@
1
+ export * from "./__internal/sync/data_switch.js";
2
+ export * as from from "./__internal/refiner/from.js";
3
+ export * as literal from "./__internal/sync/literal.js";
4
+ import {} from "../interface/__internal/schema/Value.js";
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL2Rlc2VyaWFsaXplci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxjQUFjLGtDQUFrQyxDQUFBO0FBQ2hELE9BQU8sS0FBSyxJQUFJLE1BQU0sOEJBQThCLENBQUE7QUFDcEQsT0FBTyxLQUFLLE9BQU8sTUFBTSw4QkFBOEIsQ0FBQTtBQUN2RCxPQUFPLEVBQWMsTUFBTSx5Q0FBeUMsQ0FBQSJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-core",
3
- "version": "0.1.267",
3
+ "version": "0.1.268",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Corno",
6
6
  "description": "the core language constructs for the Pareto programming language (in TypeScript)",