pareto-core 0.1.281 → 0.1.282

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.
@@ -4,8 +4,8 @@ export * from "./__internal/sync/data_switch.js";
4
4
  export * as from from "./__internal/transformer/from.js";
5
5
  export * as literal from "./__internal/sync/literal.js";
6
6
  import { type Phrase } from "../temp/fountain_pen/phrase.js";
7
- export type Phrase_Serializer<Input extends Value> = ($: Input) => string;
8
- export type Phrase_Serializer_With_Parameter<Input extends Value, Parameter extends Value> = ($: Input, $p: Parameter) => string;
7
+ export type Serializer<Input extends Value> = ($: Input) => string;
8
+ export type Serializer_With_Parameter<Input extends Value, Parameter extends Value> = ($: Input, $p: Parameter) => string;
9
9
  export declare const text_from_phrase: ($: Phrase) => string;
10
10
  export declare namespace ph {
11
11
  const composed: (phrases: Phrase[]) => Phrase;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-core",
3
- "version": "0.1.281",
3
+ "version": "0.1.282",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Corno",
6
6
  "description": "the core language constructs for the Pareto programming language (in TypeScript)",