pareto-resources 0.2.147 → 0.2.148
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.
package/package.json
CHANGED
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
import * as p_di from 'pareto-core/interface/schema';
|
|
2
|
-
import * as i_imports_list_of_characters from "./list_of_characters.js";
|
|
3
|
-
export declare namespace Paragraph_ {
|
|
4
|
-
namespace composed {
|
|
5
|
-
type L = Paragraph_;
|
|
6
|
-
}
|
|
7
|
-
type composed = p_di.List<composed.L>;
|
|
8
|
-
namespace sentences {
|
|
9
|
-
type L = Sentence_;
|
|
10
|
-
}
|
|
11
|
-
type sentences = p_di.List<sentences.L>;
|
|
12
|
-
namespace optional {
|
|
13
|
-
type O = Paragraph_;
|
|
14
|
-
}
|
|
15
|
-
type optional = p_di.Optional_Value<optional.O>;
|
|
16
|
-
type nothing = null;
|
|
17
|
-
namespace rich_list {
|
|
18
|
-
namespace items {
|
|
19
|
-
type L = Sentence_;
|
|
20
|
-
}
|
|
21
|
-
type items = p_di.List<items.L>;
|
|
22
|
-
namespace if_empty {
|
|
23
|
-
type O = Sentence_;
|
|
24
|
-
}
|
|
25
|
-
type if_empty = p_di.Optional_Value<if_empty.O>;
|
|
26
|
-
namespace if_not_empty {
|
|
27
|
-
namespace before {
|
|
28
|
-
type O = Sentence_;
|
|
29
|
-
}
|
|
30
|
-
type before = p_di.Optional_Value<before.O>;
|
|
31
|
-
type indent = boolean;
|
|
32
|
-
namespace separator {
|
|
33
|
-
type O = Phrase_;
|
|
34
|
-
}
|
|
35
|
-
type separator = p_di.Optional_Value<separator.O>;
|
|
36
|
-
namespace after {
|
|
37
|
-
type O = Sentence_;
|
|
38
|
-
}
|
|
39
|
-
type after = p_di.Optional_Value<after.O>;
|
|
40
|
-
}
|
|
41
|
-
type if_not_empty = {
|
|
42
|
-
readonly 'before': if_not_empty.before;
|
|
43
|
-
readonly 'indent': if_not_empty.indent;
|
|
44
|
-
readonly 'separator': if_not_empty.separator;
|
|
45
|
-
readonly 'after': if_not_empty.after;
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
type rich_list = {
|
|
49
|
-
readonly 'items': rich_list.items;
|
|
50
|
-
readonly 'if empty': rich_list.if_empty;
|
|
51
|
-
readonly 'if not empty': rich_list.if_not_empty;
|
|
52
|
-
};
|
|
53
|
-
}
|
|
54
|
-
export type Paragraph_ = readonly ['composed', Paragraph_.composed] | readonly ['sentences', Paragraph_.sentences] | readonly ['optional', Paragraph_.optional] | readonly ['nothing', Paragraph_.nothing] | readonly ['rich list', Paragraph_.rich_list];
|
|
55
|
-
export declare namespace Sentence_ {
|
|
56
|
-
type L = Phrase_;
|
|
57
|
-
}
|
|
58
|
-
export type Sentence_ = p_di.List<Sentence_.L>;
|
|
59
|
-
export declare namespace Phrase_ {
|
|
60
|
-
namespace value {
|
|
61
|
-
type text = string;
|
|
62
|
-
type list_of_characters = i_imports_list_of_characters.List_of_Characters;
|
|
63
|
-
}
|
|
64
|
-
type value = readonly ['text', value.text] | readonly ['list of characters', value.list_of_characters];
|
|
65
|
-
type indent = Paragraph_;
|
|
66
|
-
namespace composed {
|
|
67
|
-
type L = Phrase_;
|
|
68
|
-
}
|
|
69
|
-
type composed = p_di.List<composed.L>;
|
|
70
|
-
namespace optional {
|
|
71
|
-
type O = Phrase_;
|
|
72
|
-
}
|
|
73
|
-
type optional = p_di.Optional_Value<optional.O>;
|
|
74
|
-
type nothing = null;
|
|
75
|
-
namespace rich_list {
|
|
76
|
-
namespace items {
|
|
77
|
-
type L = Phrase_;
|
|
78
|
-
}
|
|
79
|
-
type items = p_di.List<items.L>;
|
|
80
|
-
type if_empty = Phrase_;
|
|
81
|
-
namespace if_not_empty {
|
|
82
|
-
type before = Phrase_;
|
|
83
|
-
type separator = Phrase_;
|
|
84
|
-
type after = Phrase_;
|
|
85
|
-
}
|
|
86
|
-
type if_not_empty = {
|
|
87
|
-
readonly 'before': if_not_empty.before;
|
|
88
|
-
readonly 'separator': if_not_empty.separator;
|
|
89
|
-
readonly 'after': if_not_empty.after;
|
|
90
|
-
};
|
|
91
|
-
}
|
|
92
|
-
type rich_list = {
|
|
93
|
-
readonly 'items': rich_list.items;
|
|
94
|
-
readonly 'if empty': rich_list.if_empty;
|
|
95
|
-
readonly 'if not empty': rich_list.if_not_empty;
|
|
96
|
-
};
|
|
97
|
-
}
|
|
98
|
-
export type Phrase_ = readonly ['value', Phrase_.value] | readonly ['indent', Phrase_.indent] | readonly ['composed', Phrase_.composed] | readonly ['optional', Phrase_.optional] | readonly ['nothing', Phrase_.nothing] | readonly ['rich list', Phrase_.rich_list];
|
|
99
|
-
export type { Paragraph_ as Paragraph, Sentence_ as Sentence, Phrase_ as Phrase, };
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import * as p_i from 'pareto-core/interface/__internal/Abort';
|
|
2
|
-
import * as p_di from 'pareto-core/interface/schema';
|
|
3
|
-
import * as i_imports_list_of_characters from "./list_of_characters.js";
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm91bnRhaW5fcGVuLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9zY2hlbWFzL2ZvdW50YWluX3Blbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEtBQUssR0FBRyxNQUFNLHdDQUF3QyxDQUFBO0FBQzdELE9BQU8sS0FBSyxJQUFJLE1BQU0sOEJBQThCLENBQUE7QUFFcEQsT0FBTyxLQUFLLDRCQUE0QixNQUFNLHlCQUF5QixDQUFBIn0=
|