pareto-fountain-pen 0.1.41 → 0.3.0
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/dist/exceptional/serialize/block.js +2 -2
- package/dist/exceptional/serialize/semi_lines.js +8 -8
- package/dist/implementation/{procedures → algorithms/procedures}/guaranteed/console_error.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/guaranteed/console_error.js +2 -2
- package/dist/implementation/{procedures → algorithms/procedures}/guaranteed/console_log.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/guaranteed/console_log.js +2 -2
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_directory.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_directory.js +4 -4
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_file.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_file.js +4 -4
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_node.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_node.js +1 -1
- package/dist/implementation/{transformations → algorithms/transformations}/block/lines.d.ts +2 -2
- package/dist/implementation/{transformations → algorithms/transformations}/block/lines.js +1 -1
- package/dist/implementation/algorithms/transformations/block/semi_lines.d.ts +4 -0
- package/dist/implementation/{transformations → algorithms/transformations}/block/semi_lines.js +1 -1
- package/dist/implementation/{transformations → algorithms/transformations}/semi_lines/lines.d.ts +2 -2
- package/dist/implementation/algorithms/transformations/semi_lines/lines.js +45 -0
- package/dist/implementation/generated/pareto/generic/parse/ast.d.ts +10 -0
- package/dist/implementation/generated/pareto/generic/parse/ast.js +245 -0
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +13 -0
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +50 -0
- package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +6 -0
- package/dist/implementation/generated/pareto/generic/parse/parse.js +65 -0
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +40 -0
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +109 -0
- package/dist/implementation/generated/pareto/generic/parse/token.d.ts +9 -0
- package/dist/implementation/generated/pareto/generic/parse/token.js +519 -0
- package/dist/implementation/generated/pareto/generic/resolve.js +7 -7
- package/dist/implementation/generated/pareto/generic/serialize.d.ts +4 -0
- package/dist/implementation/generated/pareto/generic/serialize.js +93 -0
- package/dist/implementation/generated/pareto/generic/unmarshall.d.ts +26 -26
- package/dist/implementation/generated/pareto/generic/unmarshall.js +38 -29
- package/dist/implementation/generated/pareto/schemas/block/deserialize.d.ts +7 -0
- package/dist/implementation/generated/pareto/schemas/block/deserialize.js +40 -0
- package/dist/implementation/generated/pareto/schemas/block/serialize.d.ts +7 -0
- package/dist/implementation/generated/pareto/schemas/block/serialize.js +53 -0
- package/dist/implementation/generated/pareto/schemas/lines/deserialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/lines/deserialize.js +32 -0
- package/dist/implementation/generated/pareto/schemas/lines/serialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/lines/serialize.js +37 -0
- package/dist/implementation/generated/pareto/schemas/semi_lines/deserialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/semi_lines/deserialize.js +32 -0
- package/dist/implementation/generated/pareto/schemas/semi_lines/serialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/semi_lines/serialize.js +37 -0
- package/dist/implementation/generated/pareto/schemas/text/deserialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/text/deserialize.js +32 -0
- package/dist/implementation/generated/pareto/schemas/text/serialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/text/serialize.js +37 -0
- package/dist/interface/algorithms/procedures/guaranteed/console_error.d.ts +1 -0
- package/dist/interface/algorithms/procedures/guaranteed/console_error.js +5 -0
- package/dist/interface/algorithms/procedures/guaranteed/console_log.d.ts +1 -0
- package/dist/interface/algorithms/procedures/guaranteed/console_log.js +5 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_directory.d.ts +1 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_directory.js +5 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_file.d.ts +1 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_file.js +5 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_node.d.ts +1 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_node.js +5 -0
- package/dist/interface/algorithms/transformations/block/lines.d.ts +1 -0
- package/dist/interface/algorithms/transformations/block/lines.js +5 -0
- package/dist/interface/algorithms/transformations/block/semi_lines.d.ts +1 -0
- package/dist/interface/algorithms/transformations/block/semi_lines.js +5 -0
- package/dist/interface/algorithms/transformations/semi_lines/lines.d.ts +1 -0
- package/dist/interface/algorithms/transformations/semi_lines/lines.js +5 -0
- package/dist/interface/generated/pareto/core/astn_source.d.ts +15 -0
- package/dist/interface/generated/pareto/core/parse_result.d.ts +25 -0
- package/dist/interface/generated/pareto/core/parse_result.js +3 -0
- package/dist/interface/generated/pareto/core/resolve.d.ts +1 -1
- package/dist/interface/generated/pareto/core/resolved.d.ts +3 -3
- package/dist/interface/generated/pareto/core/token.d.ts +49 -0
- package/dist/interface/generated/pareto/core/token.js +3 -0
- package/dist/interface/generated/pareto/schemas/block/deserialize.d.ts +158 -0
- package/dist/interface/generated/pareto/schemas/block/deserialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/block/serialize.d.ts +158 -0
- package/dist/interface/generated/pareto/schemas/block/serialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/lines/deserialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/lines/deserialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/lines/serialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/lines/serialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/semi_lines/deserialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/semi_lines/deserialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/semi_lines/serialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/semi_lines/serialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/text/deserialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/text/deserialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/text/serialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/text/serialize.js +3 -0
- package/dist/shorthands/block.d.ts +1 -1
- package/dist/temp/temp_types.d.ts +2 -2
- package/package.json +7 -14
- package/dist/implementation/transformations/block/semi_lines.d.ts +0 -4
- package/dist/implementation/transformations/semi_lines/lines.js +0 -45
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import * as _i_out from "./data_types/target";
|
|
2
|
+
import * as _i_vd from "./value_deserializers";
|
|
3
|
+
export type _T_Block = ($$_: string, $$_p: {
|
|
4
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
5
|
+
}) => _i_out._T_Block;
|
|
6
|
+
export type _T_Block_Part = ($$_: string, $$_p: {
|
|
7
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
8
|
+
}) => _i_out._T_Block_Part;
|
|
9
|
+
export type _T_Directory = ($$_: string, $$_p: {
|
|
10
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
11
|
+
}) => _i_out._T_Directory;
|
|
12
|
+
export type _T_Group = ($$_: string, $$_p: {
|
|
13
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
14
|
+
}) => _i_out._T_Group;
|
|
15
|
+
export type _T_Group_Part = ($$_: string, $$_p: {
|
|
16
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
17
|
+
}) => _i_out._T_Group_Part;
|
|
18
|
+
export type _T_Node = ($$_: string, $$_p: {
|
|
19
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
20
|
+
}) => _i_out._T_Node;
|
|
21
|
+
export type Block = _T_Block;
|
|
22
|
+
export type Block_Part = _T_Block_Part;
|
|
23
|
+
export type Directory = _T_Directory;
|
|
24
|
+
export type Group = _T_Group;
|
|
25
|
+
export type Group_Part = _T_Group_Part;
|
|
26
|
+
export type Node = _T_Node;
|
|
27
|
+
export declare namespace _T_Block {
|
|
28
|
+
type CONTEXT = string;
|
|
29
|
+
namespace PARAMS {
|
|
30
|
+
namespace value_deserializers {
|
|
31
|
+
}
|
|
32
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
33
|
+
}
|
|
34
|
+
namespace RESULT {
|
|
35
|
+
}
|
|
36
|
+
type RESULT = _i_out._T_Block;
|
|
37
|
+
}
|
|
38
|
+
export declare namespace _T_Block_Part {
|
|
39
|
+
type CONTEXT = string;
|
|
40
|
+
namespace PARAMS {
|
|
41
|
+
namespace value_deserializers {
|
|
42
|
+
}
|
|
43
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
44
|
+
}
|
|
45
|
+
namespace RESULT {
|
|
46
|
+
}
|
|
47
|
+
type RESULT = _i_out._T_Block_Part;
|
|
48
|
+
}
|
|
49
|
+
export declare namespace _T_Directory {
|
|
50
|
+
type CONTEXT = string;
|
|
51
|
+
namespace PARAMS {
|
|
52
|
+
namespace value_deserializers {
|
|
53
|
+
}
|
|
54
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
55
|
+
}
|
|
56
|
+
namespace RESULT {
|
|
57
|
+
}
|
|
58
|
+
type RESULT = _i_out._T_Directory;
|
|
59
|
+
}
|
|
60
|
+
export declare namespace _T_Group {
|
|
61
|
+
type CONTEXT = string;
|
|
62
|
+
namespace PARAMS {
|
|
63
|
+
namespace value_deserializers {
|
|
64
|
+
}
|
|
65
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
66
|
+
}
|
|
67
|
+
namespace RESULT {
|
|
68
|
+
}
|
|
69
|
+
type RESULT = _i_out._T_Group;
|
|
70
|
+
}
|
|
71
|
+
export declare namespace _T_Group_Part {
|
|
72
|
+
type CONTEXT = string;
|
|
73
|
+
namespace PARAMS {
|
|
74
|
+
namespace value_deserializers {
|
|
75
|
+
}
|
|
76
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
77
|
+
}
|
|
78
|
+
namespace RESULT {
|
|
79
|
+
}
|
|
80
|
+
type RESULT = _i_out._T_Group_Part;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace _T_Node {
|
|
83
|
+
type CONTEXT = string;
|
|
84
|
+
namespace PARAMS {
|
|
85
|
+
namespace value_deserializers {
|
|
86
|
+
}
|
|
87
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
88
|
+
}
|
|
89
|
+
namespace RESULT {
|
|
90
|
+
}
|
|
91
|
+
type RESULT = _i_out._T_Node;
|
|
92
|
+
}
|
|
93
|
+
export declare namespace Block {
|
|
94
|
+
type CONTEXT = string;
|
|
95
|
+
namespace PARAMS {
|
|
96
|
+
namespace value_deserializers {
|
|
97
|
+
}
|
|
98
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
99
|
+
}
|
|
100
|
+
namespace RESULT {
|
|
101
|
+
}
|
|
102
|
+
type RESULT = _i_out._T_Block;
|
|
103
|
+
}
|
|
104
|
+
export declare namespace Block_Part {
|
|
105
|
+
type CONTEXT = string;
|
|
106
|
+
namespace PARAMS {
|
|
107
|
+
namespace value_deserializers {
|
|
108
|
+
}
|
|
109
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
110
|
+
}
|
|
111
|
+
namespace RESULT {
|
|
112
|
+
}
|
|
113
|
+
type RESULT = _i_out._T_Block_Part;
|
|
114
|
+
}
|
|
115
|
+
export declare namespace Directory {
|
|
116
|
+
type CONTEXT = string;
|
|
117
|
+
namespace PARAMS {
|
|
118
|
+
namespace value_deserializers {
|
|
119
|
+
}
|
|
120
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
121
|
+
}
|
|
122
|
+
namespace RESULT {
|
|
123
|
+
}
|
|
124
|
+
type RESULT = _i_out._T_Directory;
|
|
125
|
+
}
|
|
126
|
+
export declare namespace Group {
|
|
127
|
+
type CONTEXT = string;
|
|
128
|
+
namespace PARAMS {
|
|
129
|
+
namespace value_deserializers {
|
|
130
|
+
}
|
|
131
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
132
|
+
}
|
|
133
|
+
namespace RESULT {
|
|
134
|
+
}
|
|
135
|
+
type RESULT = _i_out._T_Group;
|
|
136
|
+
}
|
|
137
|
+
export declare namespace Group_Part {
|
|
138
|
+
type CONTEXT = string;
|
|
139
|
+
namespace PARAMS {
|
|
140
|
+
namespace value_deserializers {
|
|
141
|
+
}
|
|
142
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
143
|
+
}
|
|
144
|
+
namespace RESULT {
|
|
145
|
+
}
|
|
146
|
+
type RESULT = _i_out._T_Group_Part;
|
|
147
|
+
}
|
|
148
|
+
export declare namespace Node {
|
|
149
|
+
type CONTEXT = string;
|
|
150
|
+
namespace PARAMS {
|
|
151
|
+
namespace value_deserializers {
|
|
152
|
+
}
|
|
153
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
154
|
+
}
|
|
155
|
+
namespace RESULT {
|
|
156
|
+
}
|
|
157
|
+
type RESULT = _i_out._T_Node;
|
|
158
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9ibG9jay9kZXNlcmlhbGl6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import * as _i_in from "./data_types/source";
|
|
2
|
+
import * as _i_vs from "./value_serializers";
|
|
3
|
+
export type _T_Block = ($$_: _i_in._T_Block, $$_p: {
|
|
4
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
5
|
+
}) => string;
|
|
6
|
+
export type _T_Block_Part = ($$_: _i_in._T_Block_Part, $$_p: {
|
|
7
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
8
|
+
}) => string;
|
|
9
|
+
export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: {
|
|
10
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
11
|
+
}) => string;
|
|
12
|
+
export type _T_Group = ($$_: _i_in._T_Group, $$_p: {
|
|
13
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
14
|
+
}) => string;
|
|
15
|
+
export type _T_Group_Part = ($$_: _i_in._T_Group_Part, $$_p: {
|
|
16
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
17
|
+
}) => string;
|
|
18
|
+
export type _T_Node = ($$_: _i_in._T_Node, $$_p: {
|
|
19
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
20
|
+
}) => string;
|
|
21
|
+
export type Block = _T_Block;
|
|
22
|
+
export type Block_Part = _T_Block_Part;
|
|
23
|
+
export type Directory = _T_Directory;
|
|
24
|
+
export type Group = _T_Group;
|
|
25
|
+
export type Group_Part = _T_Group_Part;
|
|
26
|
+
export type Node = _T_Node;
|
|
27
|
+
export declare namespace _T_Block {
|
|
28
|
+
namespace CONTEXT {
|
|
29
|
+
}
|
|
30
|
+
type CONTEXT = _i_in._T_Block;
|
|
31
|
+
namespace PARAMS {
|
|
32
|
+
namespace value_serializers {
|
|
33
|
+
}
|
|
34
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
35
|
+
}
|
|
36
|
+
type RESULT = string;
|
|
37
|
+
}
|
|
38
|
+
export declare namespace _T_Block_Part {
|
|
39
|
+
namespace CONTEXT {
|
|
40
|
+
}
|
|
41
|
+
type CONTEXT = _i_in._T_Block_Part;
|
|
42
|
+
namespace PARAMS {
|
|
43
|
+
namespace value_serializers {
|
|
44
|
+
}
|
|
45
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
46
|
+
}
|
|
47
|
+
type RESULT = string;
|
|
48
|
+
}
|
|
49
|
+
export declare namespace _T_Directory {
|
|
50
|
+
namespace CONTEXT {
|
|
51
|
+
}
|
|
52
|
+
type CONTEXT = _i_in._T_Directory;
|
|
53
|
+
namespace PARAMS {
|
|
54
|
+
namespace value_serializers {
|
|
55
|
+
}
|
|
56
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
57
|
+
}
|
|
58
|
+
type RESULT = string;
|
|
59
|
+
}
|
|
60
|
+
export declare namespace _T_Group {
|
|
61
|
+
namespace CONTEXT {
|
|
62
|
+
}
|
|
63
|
+
type CONTEXT = _i_in._T_Group;
|
|
64
|
+
namespace PARAMS {
|
|
65
|
+
namespace value_serializers {
|
|
66
|
+
}
|
|
67
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
68
|
+
}
|
|
69
|
+
type RESULT = string;
|
|
70
|
+
}
|
|
71
|
+
export declare namespace _T_Group_Part {
|
|
72
|
+
namespace CONTEXT {
|
|
73
|
+
}
|
|
74
|
+
type CONTEXT = _i_in._T_Group_Part;
|
|
75
|
+
namespace PARAMS {
|
|
76
|
+
namespace value_serializers {
|
|
77
|
+
}
|
|
78
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
79
|
+
}
|
|
80
|
+
type RESULT = string;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace _T_Node {
|
|
83
|
+
namespace CONTEXT {
|
|
84
|
+
}
|
|
85
|
+
type CONTEXT = _i_in._T_Node;
|
|
86
|
+
namespace PARAMS {
|
|
87
|
+
namespace value_serializers {
|
|
88
|
+
}
|
|
89
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
90
|
+
}
|
|
91
|
+
type RESULT = string;
|
|
92
|
+
}
|
|
93
|
+
export declare namespace Block {
|
|
94
|
+
namespace CONTEXT {
|
|
95
|
+
}
|
|
96
|
+
type CONTEXT = _i_in._T_Block;
|
|
97
|
+
namespace PARAMS {
|
|
98
|
+
namespace value_serializers {
|
|
99
|
+
}
|
|
100
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
101
|
+
}
|
|
102
|
+
type RESULT = string;
|
|
103
|
+
}
|
|
104
|
+
export declare namespace Block_Part {
|
|
105
|
+
namespace CONTEXT {
|
|
106
|
+
}
|
|
107
|
+
type CONTEXT = _i_in._T_Block_Part;
|
|
108
|
+
namespace PARAMS {
|
|
109
|
+
namespace value_serializers {
|
|
110
|
+
}
|
|
111
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
112
|
+
}
|
|
113
|
+
type RESULT = string;
|
|
114
|
+
}
|
|
115
|
+
export declare namespace Directory {
|
|
116
|
+
namespace CONTEXT {
|
|
117
|
+
}
|
|
118
|
+
type CONTEXT = _i_in._T_Directory;
|
|
119
|
+
namespace PARAMS {
|
|
120
|
+
namespace value_serializers {
|
|
121
|
+
}
|
|
122
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
123
|
+
}
|
|
124
|
+
type RESULT = string;
|
|
125
|
+
}
|
|
126
|
+
export declare namespace Group {
|
|
127
|
+
namespace CONTEXT {
|
|
128
|
+
}
|
|
129
|
+
type CONTEXT = _i_in._T_Group;
|
|
130
|
+
namespace PARAMS {
|
|
131
|
+
namespace value_serializers {
|
|
132
|
+
}
|
|
133
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
134
|
+
}
|
|
135
|
+
type RESULT = string;
|
|
136
|
+
}
|
|
137
|
+
export declare namespace Group_Part {
|
|
138
|
+
namespace CONTEXT {
|
|
139
|
+
}
|
|
140
|
+
type CONTEXT = _i_in._T_Group_Part;
|
|
141
|
+
namespace PARAMS {
|
|
142
|
+
namespace value_serializers {
|
|
143
|
+
}
|
|
144
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
145
|
+
}
|
|
146
|
+
type RESULT = string;
|
|
147
|
+
}
|
|
148
|
+
export declare namespace Node {
|
|
149
|
+
namespace CONTEXT {
|
|
150
|
+
}
|
|
151
|
+
type CONTEXT = _i_in._T_Node;
|
|
152
|
+
namespace PARAMS {
|
|
153
|
+
namespace value_serializers {
|
|
154
|
+
}
|
|
155
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
156
|
+
}
|
|
157
|
+
type RESULT = string;
|
|
158
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvYmxvY2svc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as _i_out from "./data_types/target";
|
|
2
|
+
import * as _i_vd from "./value_deserializers";
|
|
3
|
+
export type _T_Directory = ($$_: string, $$_p: {
|
|
4
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
5
|
+
}) => _i_out._T_Directory;
|
|
6
|
+
export type _T_Lines = ($$_: string, $$_p: {
|
|
7
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
8
|
+
}) => _i_out._T_Lines;
|
|
9
|
+
export type Directory = _T_Directory;
|
|
10
|
+
export type Lines = _T_Lines;
|
|
11
|
+
export declare namespace _T_Directory {
|
|
12
|
+
type CONTEXT = string;
|
|
13
|
+
namespace PARAMS {
|
|
14
|
+
namespace value_deserializers {
|
|
15
|
+
}
|
|
16
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
17
|
+
}
|
|
18
|
+
namespace RESULT {
|
|
19
|
+
}
|
|
20
|
+
type RESULT = _i_out._T_Directory;
|
|
21
|
+
}
|
|
22
|
+
export declare namespace _T_Lines {
|
|
23
|
+
type CONTEXT = string;
|
|
24
|
+
namespace PARAMS {
|
|
25
|
+
namespace value_deserializers {
|
|
26
|
+
}
|
|
27
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
28
|
+
}
|
|
29
|
+
namespace RESULT {
|
|
30
|
+
}
|
|
31
|
+
type RESULT = _i_out._T_Lines;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace Directory {
|
|
34
|
+
type CONTEXT = string;
|
|
35
|
+
namespace PARAMS {
|
|
36
|
+
namespace value_deserializers {
|
|
37
|
+
}
|
|
38
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
39
|
+
}
|
|
40
|
+
namespace RESULT {
|
|
41
|
+
}
|
|
42
|
+
type RESULT = _i_out._T_Directory;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace Lines {
|
|
45
|
+
type CONTEXT = string;
|
|
46
|
+
namespace PARAMS {
|
|
47
|
+
namespace value_deserializers {
|
|
48
|
+
}
|
|
49
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
50
|
+
}
|
|
51
|
+
namespace RESULT {
|
|
52
|
+
}
|
|
53
|
+
type RESULT = _i_out._T_Lines;
|
|
54
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9saW5lcy9kZXNlcmlhbGl6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as _i_in from "./data_types/source";
|
|
2
|
+
import * as _i_vs from "./value_serializers";
|
|
3
|
+
export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: {
|
|
4
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
5
|
+
}) => string;
|
|
6
|
+
export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: {
|
|
7
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
8
|
+
}) => string;
|
|
9
|
+
export type Directory = _T_Directory;
|
|
10
|
+
export type Lines = _T_Lines;
|
|
11
|
+
export declare namespace _T_Directory {
|
|
12
|
+
namespace CONTEXT {
|
|
13
|
+
}
|
|
14
|
+
type CONTEXT = _i_in._T_Directory;
|
|
15
|
+
namespace PARAMS {
|
|
16
|
+
namespace value_serializers {
|
|
17
|
+
}
|
|
18
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
19
|
+
}
|
|
20
|
+
type RESULT = string;
|
|
21
|
+
}
|
|
22
|
+
export declare namespace _T_Lines {
|
|
23
|
+
namespace CONTEXT {
|
|
24
|
+
}
|
|
25
|
+
type CONTEXT = _i_in._T_Lines;
|
|
26
|
+
namespace PARAMS {
|
|
27
|
+
namespace value_serializers {
|
|
28
|
+
}
|
|
29
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
30
|
+
}
|
|
31
|
+
type RESULT = string;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace Directory {
|
|
34
|
+
namespace CONTEXT {
|
|
35
|
+
}
|
|
36
|
+
type CONTEXT = _i_in._T_Directory;
|
|
37
|
+
namespace PARAMS {
|
|
38
|
+
namespace value_serializers {
|
|
39
|
+
}
|
|
40
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
41
|
+
}
|
|
42
|
+
type RESULT = string;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace Lines {
|
|
45
|
+
namespace CONTEXT {
|
|
46
|
+
}
|
|
47
|
+
type CONTEXT = _i_in._T_Lines;
|
|
48
|
+
namespace PARAMS {
|
|
49
|
+
namespace value_serializers {
|
|
50
|
+
}
|
|
51
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
52
|
+
}
|
|
53
|
+
type RESULT = string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvbGluZXMvc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as _i_out from "./data_types/target";
|
|
2
|
+
import * as _i_vd from "./value_deserializers";
|
|
3
|
+
export type _T_Directory = ($$_: string, $$_p: {
|
|
4
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
5
|
+
}) => _i_out._T_Directory;
|
|
6
|
+
export type _T_Lines = ($$_: string, $$_p: {
|
|
7
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
8
|
+
}) => _i_out._T_Lines;
|
|
9
|
+
export type Directory = _T_Directory;
|
|
10
|
+
export type Lines = _T_Lines;
|
|
11
|
+
export declare namespace _T_Directory {
|
|
12
|
+
type CONTEXT = string;
|
|
13
|
+
namespace PARAMS {
|
|
14
|
+
namespace value_deserializers {
|
|
15
|
+
}
|
|
16
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
17
|
+
}
|
|
18
|
+
namespace RESULT {
|
|
19
|
+
}
|
|
20
|
+
type RESULT = _i_out._T_Directory;
|
|
21
|
+
}
|
|
22
|
+
export declare namespace _T_Lines {
|
|
23
|
+
type CONTEXT = string;
|
|
24
|
+
namespace PARAMS {
|
|
25
|
+
namespace value_deserializers {
|
|
26
|
+
}
|
|
27
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
28
|
+
}
|
|
29
|
+
namespace RESULT {
|
|
30
|
+
}
|
|
31
|
+
type RESULT = _i_out._T_Lines;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace Directory {
|
|
34
|
+
type CONTEXT = string;
|
|
35
|
+
namespace PARAMS {
|
|
36
|
+
namespace value_deserializers {
|
|
37
|
+
}
|
|
38
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
39
|
+
}
|
|
40
|
+
namespace RESULT {
|
|
41
|
+
}
|
|
42
|
+
type RESULT = _i_out._T_Directory;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace Lines {
|
|
45
|
+
type CONTEXT = string;
|
|
46
|
+
namespace PARAMS {
|
|
47
|
+
namespace value_deserializers {
|
|
48
|
+
}
|
|
49
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
50
|
+
}
|
|
51
|
+
namespace RESULT {
|
|
52
|
+
}
|
|
53
|
+
type RESULT = _i_out._T_Lines;
|
|
54
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9zZW1pX2xpbmVzL2Rlc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as _i_in from "./data_types/source";
|
|
2
|
+
import * as _i_vs from "./value_serializers";
|
|
3
|
+
export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: {
|
|
4
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
5
|
+
}) => string;
|
|
6
|
+
export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: {
|
|
7
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
8
|
+
}) => string;
|
|
9
|
+
export type Directory = _T_Directory;
|
|
10
|
+
export type Lines = _T_Lines;
|
|
11
|
+
export declare namespace _T_Directory {
|
|
12
|
+
namespace CONTEXT {
|
|
13
|
+
}
|
|
14
|
+
type CONTEXT = _i_in._T_Directory;
|
|
15
|
+
namespace PARAMS {
|
|
16
|
+
namespace value_serializers {
|
|
17
|
+
}
|
|
18
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
19
|
+
}
|
|
20
|
+
type RESULT = string;
|
|
21
|
+
}
|
|
22
|
+
export declare namespace _T_Lines {
|
|
23
|
+
namespace CONTEXT {
|
|
24
|
+
}
|
|
25
|
+
type CONTEXT = _i_in._T_Lines;
|
|
26
|
+
namespace PARAMS {
|
|
27
|
+
namespace value_serializers {
|
|
28
|
+
}
|
|
29
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
30
|
+
}
|
|
31
|
+
type RESULT = string;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace Directory {
|
|
34
|
+
namespace CONTEXT {
|
|
35
|
+
}
|
|
36
|
+
type CONTEXT = _i_in._T_Directory;
|
|
37
|
+
namespace PARAMS {
|
|
38
|
+
namespace value_serializers {
|
|
39
|
+
}
|
|
40
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
41
|
+
}
|
|
42
|
+
type RESULT = string;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace Lines {
|
|
45
|
+
namespace CONTEXT {
|
|
46
|
+
}
|
|
47
|
+
type CONTEXT = _i_in._T_Lines;
|
|
48
|
+
namespace PARAMS {
|
|
49
|
+
namespace value_serializers {
|
|
50
|
+
}
|
|
51
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
52
|
+
}
|
|
53
|
+
type RESULT = string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvc2VtaV9saW5lcy9zZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as _i_out from "./data_types/target";
|
|
2
|
+
import * as _i_vd from "./value_deserializers";
|
|
3
|
+
export type _T_Directory = ($$_: string, $$_p: {
|
|
4
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
5
|
+
}) => _i_out._T_Directory;
|
|
6
|
+
export type _T_Lines = ($$_: string, $$_p: {
|
|
7
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
8
|
+
}) => _i_out._T_Lines;
|
|
9
|
+
export type Directory = _T_Directory;
|
|
10
|
+
export type Lines = _T_Lines;
|
|
11
|
+
export declare namespace _T_Directory {
|
|
12
|
+
type CONTEXT = string;
|
|
13
|
+
namespace PARAMS {
|
|
14
|
+
namespace value_deserializers {
|
|
15
|
+
}
|
|
16
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
17
|
+
}
|
|
18
|
+
namespace RESULT {
|
|
19
|
+
}
|
|
20
|
+
type RESULT = _i_out._T_Directory;
|
|
21
|
+
}
|
|
22
|
+
export declare namespace _T_Lines {
|
|
23
|
+
type CONTEXT = string;
|
|
24
|
+
namespace PARAMS {
|
|
25
|
+
namespace value_deserializers {
|
|
26
|
+
}
|
|
27
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
28
|
+
}
|
|
29
|
+
namespace RESULT {
|
|
30
|
+
}
|
|
31
|
+
type RESULT = _i_out._T_Lines;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace Directory {
|
|
34
|
+
type CONTEXT = string;
|
|
35
|
+
namespace PARAMS {
|
|
36
|
+
namespace value_deserializers {
|
|
37
|
+
}
|
|
38
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
39
|
+
}
|
|
40
|
+
namespace RESULT {
|
|
41
|
+
}
|
|
42
|
+
type RESULT = _i_out._T_Directory;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace Lines {
|
|
45
|
+
type CONTEXT = string;
|
|
46
|
+
namespace PARAMS {
|
|
47
|
+
namespace value_deserializers {
|
|
48
|
+
}
|
|
49
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
50
|
+
}
|
|
51
|
+
namespace RESULT {
|
|
52
|
+
}
|
|
53
|
+
type RESULT = _i_out._T_Lines;
|
|
54
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy90ZXh0L2Rlc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as _i_in from "./data_types/source";
|
|
2
|
+
import * as _i_vs from "./value_serializers";
|
|
3
|
+
export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: {
|
|
4
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
5
|
+
}) => string;
|
|
6
|
+
export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: {
|
|
7
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
8
|
+
}) => string;
|
|
9
|
+
export type Directory = _T_Directory;
|
|
10
|
+
export type Lines = _T_Lines;
|
|
11
|
+
export declare namespace _T_Directory {
|
|
12
|
+
namespace CONTEXT {
|
|
13
|
+
}
|
|
14
|
+
type CONTEXT = _i_in._T_Directory;
|
|
15
|
+
namespace PARAMS {
|
|
16
|
+
namespace value_serializers {
|
|
17
|
+
}
|
|
18
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
19
|
+
}
|
|
20
|
+
type RESULT = string;
|
|
21
|
+
}
|
|
22
|
+
export declare namespace _T_Lines {
|
|
23
|
+
namespace CONTEXT {
|
|
24
|
+
}
|
|
25
|
+
type CONTEXT = _i_in._T_Lines;
|
|
26
|
+
namespace PARAMS {
|
|
27
|
+
namespace value_serializers {
|
|
28
|
+
}
|
|
29
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
30
|
+
}
|
|
31
|
+
type RESULT = string;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace Directory {
|
|
34
|
+
namespace CONTEXT {
|
|
35
|
+
}
|
|
36
|
+
type CONTEXT = _i_in._T_Directory;
|
|
37
|
+
namespace PARAMS {
|
|
38
|
+
namespace value_serializers {
|
|
39
|
+
}
|
|
40
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
41
|
+
}
|
|
42
|
+
type RESULT = string;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace Lines {
|
|
45
|
+
namespace CONTEXT {
|
|
46
|
+
}
|
|
47
|
+
type CONTEXT = _i_in._T_Lines;
|
|
48
|
+
namespace PARAMS {
|
|
49
|
+
namespace value_serializers {
|
|
50
|
+
}
|
|
51
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
52
|
+
}
|
|
53
|
+
type RESULT = string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvdGV4dC9zZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _et from 'exupery-core-types';
|
|
2
2
|
import * as _target from "../interface/generated/pareto/schemas/block/data_types/target";
|
|
3
|
-
import * as sh from
|
|
3
|
+
import * as sh from 'exupery-core-data/dist/shorthands/unconstrained';
|
|
4
4
|
export declare namespace g {
|
|
5
5
|
const simple_block: (block: string) => _target.Group_Part;
|
|
6
6
|
const nested_block: (snippets: sh.Raw_Or_Normal_Array<_target.Block.L>) => _target.Group_Part;
|