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
|
|
8
|
-
export type
|
|
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;
|