pareto-graphviz 0.1.5 → 0.1.6
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/implementation/transformers/graphviz/fountain_pen.js +9 -4
- package/package.json +3 -3
- package/dist/exceptional/serializers/json.d.ts +0 -5
- package/dist/exceptional/serializers/json.js +0 -36
- package/dist/implementation/algorithms/operations/impure/text/serialize_string.d.ts +0 -1
- package/dist/implementation/algorithms/operations/impure/text/serialize_string.js +0 -12
- package/dist/implementation/algorithms/transformations/json/fountain_pen_block.d.ts +0 -4
- package/dist/implementation/algorithms/transformations/json/fountain_pen_block.js +0 -88
- package/dist/implementation/generated/pareto/schemas/json/deserialize.d.ts +0 -3
- package/dist/implementation/generated/pareto/schemas/json/deserialize.js +0 -32
- package/dist/implementation/generated/pareto/schemas/json/marshall.d.ts +0 -3
- package/dist/implementation/generated/pareto/schemas/json/marshall.js +0 -110
- package/dist/implementation/generated/pareto/schemas/json/serialize.d.ts +0 -3
- package/dist/implementation/generated/pareto/schemas/json/serialize.js +0 -37
- package/dist/implementation/generated/pareto/schemas/json/unmarshall.d.ts +0 -3
- package/dist/implementation/generated/pareto/schemas/json/unmarshall.js +0 -81
- package/dist/interface/algorithms/operations/impure/text/serialize_string.d.ts +0 -1
- package/dist/interface/algorithms/operations/impure/text/serialize_string.js +0 -5
- package/dist/interface/algorithms/transformations/json/fountain_pen_block.d.ts +0 -1
- package/dist/interface/algorithms/transformations/json/fountain_pen_block.js +0 -5
- package/dist/interface/generated/pareto/schemas/json/data_types/resolve.d.ts +0 -1
- package/dist/interface/generated/pareto/schemas/json/data_types/resolve.js +0 -7
- package/dist/interface/generated/pareto/schemas/json/data_types/source.d.ts +0 -169
- package/dist/interface/generated/pareto/schemas/json/data_types/source.js +0 -3
- package/dist/interface/generated/pareto/schemas/json/data_types/target.d.ts +0 -169
- package/dist/interface/generated/pareto/schemas/json/data_types/target.js +0 -3
- package/dist/interface/generated/pareto/schemas/json/deserialize.d.ts +0 -54
- package/dist/interface/generated/pareto/schemas/json/deserialize.js +0 -3
- package/dist/interface/generated/pareto/schemas/json/marshall.d.ts +0 -63
- package/dist/interface/generated/pareto/schemas/json/marshall.js +0 -3
- package/dist/interface/generated/pareto/schemas/json/migrate_boilerplate.d.ts +0 -46
- package/dist/interface/generated/pareto/schemas/json/migrate_boilerplate.js +0 -3
- package/dist/interface/generated/pareto/schemas/json/serialize.d.ts +0 -54
- package/dist/interface/generated/pareto/schemas/json/serialize.js +0 -3
- package/dist/interface/generated/pareto/schemas/json/unmarshall.d.ts +0 -63
- package/dist/interface/generated/pareto/schemas/json/unmarshall.js +0 -3
- package/dist/interface/generated/pareto/schemas/json/value_deserializers.d.ts +0 -64
- package/dist/interface/generated/pareto/schemas/json/value_deserializers.js +0 -3
- package/dist/interface/generated/pareto/schemas/json/value_serializers.d.ts +0 -64
- package/dist/interface/generated/pareto/schemas/json/value_serializers.js +0 -3
- package/dist/shorthands/json.d.ts +0 -8
- package/dist/shorthands/json.js +0 -12
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
import * as _i_core from "../../../core/resolved";
|
|
2
|
-
export type _T_Value = _i_core._T_State_Group<null, readonly ['array', _i_core._T_List<null, _T_Value>] | readonly [
|
|
3
|
-
'object',
|
|
4
|
-
_i_core._T_State_Group<null, readonly [
|
|
5
|
-
'key value array',
|
|
6
|
-
_i_core._T_List<null, {
|
|
7
|
-
readonly 'key': string;
|
|
8
|
-
readonly 'value': _T_Value;
|
|
9
|
-
}>
|
|
10
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>
|
|
11
|
-
] | readonly [
|
|
12
|
-
'number',
|
|
13
|
-
_i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>
|
|
14
|
-
] | readonly ['string', string] | readonly ['boolean', boolean] | readonly ['null', null]>;
|
|
15
|
-
export type _T_Document = _T_Value;
|
|
16
|
-
export type Value = _T_Value;
|
|
17
|
-
export type Document = _T_Document;
|
|
18
|
-
export declare namespace _T_Value {
|
|
19
|
-
namespace SG {
|
|
20
|
-
namespace array {
|
|
21
|
-
namespace L {
|
|
22
|
-
}
|
|
23
|
-
type L = _T_Value;
|
|
24
|
-
}
|
|
25
|
-
type array = _i_core._T_List<null, _T_Value>;
|
|
26
|
-
namespace _object {
|
|
27
|
-
namespace SG {
|
|
28
|
-
namespace key_value_array {
|
|
29
|
-
namespace L {
|
|
30
|
-
type key = string;
|
|
31
|
-
namespace value {
|
|
32
|
-
}
|
|
33
|
-
type value = _T_Value;
|
|
34
|
-
}
|
|
35
|
-
type L = {
|
|
36
|
-
readonly 'key': string;
|
|
37
|
-
readonly 'value': _T_Value;
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
type key_value_array = _i_core._T_List<null, {
|
|
41
|
-
readonly 'key': string;
|
|
42
|
-
readonly 'value': _T_Value;
|
|
43
|
-
}>;
|
|
44
|
-
namespace dictionary {
|
|
45
|
-
namespace D {
|
|
46
|
-
}
|
|
47
|
-
type D = _T_Value;
|
|
48
|
-
}
|
|
49
|
-
type dictionary = _i_core._T_Dictionary<null, _T_Value>;
|
|
50
|
-
}
|
|
51
|
-
type SG = readonly [
|
|
52
|
-
'key value array',
|
|
53
|
-
_i_core._T_List<null, {
|
|
54
|
-
readonly 'key': string;
|
|
55
|
-
readonly 'value': _T_Value;
|
|
56
|
-
}>
|
|
57
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>];
|
|
58
|
-
}
|
|
59
|
-
type _object = _i_core._T_State_Group<null, readonly [
|
|
60
|
-
'key value array',
|
|
61
|
-
_i_core._T_List<null, {
|
|
62
|
-
readonly 'key': string;
|
|
63
|
-
readonly 'value': _T_Value;
|
|
64
|
-
}>
|
|
65
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>;
|
|
66
|
-
namespace _number {
|
|
67
|
-
namespace SG {
|
|
68
|
-
type integer = number;
|
|
69
|
-
type float = number;
|
|
70
|
-
}
|
|
71
|
-
type SG = readonly ['integer', number] | readonly ['float', number];
|
|
72
|
-
}
|
|
73
|
-
type _number = _i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>;
|
|
74
|
-
type _string = string;
|
|
75
|
-
type _boolean = boolean;
|
|
76
|
-
type _null = null;
|
|
77
|
-
}
|
|
78
|
-
type SG = readonly ['array', _i_core._T_List<null, _T_Value>] | readonly [
|
|
79
|
-
'object',
|
|
80
|
-
_i_core._T_State_Group<null, readonly [
|
|
81
|
-
'key value array',
|
|
82
|
-
_i_core._T_List<null, {
|
|
83
|
-
readonly 'key': string;
|
|
84
|
-
readonly 'value': _T_Value;
|
|
85
|
-
}>
|
|
86
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>
|
|
87
|
-
] | readonly [
|
|
88
|
-
'number',
|
|
89
|
-
_i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>
|
|
90
|
-
] | readonly ['string', string] | readonly ['boolean', boolean] | readonly ['null', null];
|
|
91
|
-
}
|
|
92
|
-
export declare namespace _T_Document {
|
|
93
|
-
}
|
|
94
|
-
export declare namespace Value {
|
|
95
|
-
namespace SG {
|
|
96
|
-
namespace array {
|
|
97
|
-
namespace L {
|
|
98
|
-
}
|
|
99
|
-
type L = _T_Value;
|
|
100
|
-
}
|
|
101
|
-
type array = _i_core._T_List<null, _T_Value>;
|
|
102
|
-
namespace _object {
|
|
103
|
-
namespace SG {
|
|
104
|
-
namespace key_value_array {
|
|
105
|
-
namespace L {
|
|
106
|
-
type key = string;
|
|
107
|
-
namespace value {
|
|
108
|
-
}
|
|
109
|
-
type value = _T_Value;
|
|
110
|
-
}
|
|
111
|
-
type L = {
|
|
112
|
-
readonly 'key': string;
|
|
113
|
-
readonly 'value': _T_Value;
|
|
114
|
-
};
|
|
115
|
-
}
|
|
116
|
-
type key_value_array = _i_core._T_List<null, {
|
|
117
|
-
readonly 'key': string;
|
|
118
|
-
readonly 'value': _T_Value;
|
|
119
|
-
}>;
|
|
120
|
-
namespace dictionary {
|
|
121
|
-
namespace D {
|
|
122
|
-
}
|
|
123
|
-
type D = _T_Value;
|
|
124
|
-
}
|
|
125
|
-
type dictionary = _i_core._T_Dictionary<null, _T_Value>;
|
|
126
|
-
}
|
|
127
|
-
type SG = readonly [
|
|
128
|
-
'key value array',
|
|
129
|
-
_i_core._T_List<null, {
|
|
130
|
-
readonly 'key': string;
|
|
131
|
-
readonly 'value': _T_Value;
|
|
132
|
-
}>
|
|
133
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>];
|
|
134
|
-
}
|
|
135
|
-
type _object = _i_core._T_State_Group<null, readonly [
|
|
136
|
-
'key value array',
|
|
137
|
-
_i_core._T_List<null, {
|
|
138
|
-
readonly 'key': string;
|
|
139
|
-
readonly 'value': _T_Value;
|
|
140
|
-
}>
|
|
141
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>;
|
|
142
|
-
namespace _number {
|
|
143
|
-
namespace SG {
|
|
144
|
-
type integer = number;
|
|
145
|
-
type float = number;
|
|
146
|
-
}
|
|
147
|
-
type SG = readonly ['integer', number] | readonly ['float', number];
|
|
148
|
-
}
|
|
149
|
-
type _number = _i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>;
|
|
150
|
-
type _string = string;
|
|
151
|
-
type _boolean = boolean;
|
|
152
|
-
type _null = null;
|
|
153
|
-
}
|
|
154
|
-
type SG = readonly ['array', _i_core._T_List<null, _T_Value>] | readonly [
|
|
155
|
-
'object',
|
|
156
|
-
_i_core._T_State_Group<null, readonly [
|
|
157
|
-
'key value array',
|
|
158
|
-
_i_core._T_List<null, {
|
|
159
|
-
readonly 'key': string;
|
|
160
|
-
readonly 'value': _T_Value;
|
|
161
|
-
}>
|
|
162
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>
|
|
163
|
-
] | readonly [
|
|
164
|
-
'number',
|
|
165
|
-
_i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>
|
|
166
|
-
] | readonly ['string', string] | readonly ['boolean', boolean] | readonly ['null', null];
|
|
167
|
-
}
|
|
168
|
-
export declare namespace Document {
|
|
169
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic291cmNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvanNvbi9kYXRhX3R5cGVzL3NvdXJjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
import * as _i_core from "../../../core/unconstrained";
|
|
2
|
-
export type _T_Value = _i_core._T_State_Group<null, readonly ['array', _i_core._T_List<null, _T_Value>] | readonly [
|
|
3
|
-
'object',
|
|
4
|
-
_i_core._T_State_Group<null, readonly [
|
|
5
|
-
'key value array',
|
|
6
|
-
_i_core._T_List<null, {
|
|
7
|
-
readonly 'key': string;
|
|
8
|
-
readonly 'value': _T_Value;
|
|
9
|
-
}>
|
|
10
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>
|
|
11
|
-
] | readonly [
|
|
12
|
-
'number',
|
|
13
|
-
_i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>
|
|
14
|
-
] | readonly ['string', string] | readonly ['boolean', boolean] | readonly ['null', null]>;
|
|
15
|
-
export type _T_Document = _T_Value;
|
|
16
|
-
export type Value = _T_Value;
|
|
17
|
-
export type Document = _T_Document;
|
|
18
|
-
export declare namespace _T_Value {
|
|
19
|
-
namespace SG {
|
|
20
|
-
namespace array {
|
|
21
|
-
namespace L {
|
|
22
|
-
}
|
|
23
|
-
type L = _T_Value;
|
|
24
|
-
}
|
|
25
|
-
type array = _i_core._T_List<null, _T_Value>;
|
|
26
|
-
namespace _object {
|
|
27
|
-
namespace SG {
|
|
28
|
-
namespace key_value_array {
|
|
29
|
-
namespace L {
|
|
30
|
-
type key = string;
|
|
31
|
-
namespace value {
|
|
32
|
-
}
|
|
33
|
-
type value = _T_Value;
|
|
34
|
-
}
|
|
35
|
-
type L = {
|
|
36
|
-
readonly 'key': string;
|
|
37
|
-
readonly 'value': _T_Value;
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
type key_value_array = _i_core._T_List<null, {
|
|
41
|
-
readonly 'key': string;
|
|
42
|
-
readonly 'value': _T_Value;
|
|
43
|
-
}>;
|
|
44
|
-
namespace dictionary {
|
|
45
|
-
namespace D {
|
|
46
|
-
}
|
|
47
|
-
type D = _T_Value;
|
|
48
|
-
}
|
|
49
|
-
type dictionary = _i_core._T_Dictionary<null, _T_Value>;
|
|
50
|
-
}
|
|
51
|
-
type SG = readonly [
|
|
52
|
-
'key value array',
|
|
53
|
-
_i_core._T_List<null, {
|
|
54
|
-
readonly 'key': string;
|
|
55
|
-
readonly 'value': _T_Value;
|
|
56
|
-
}>
|
|
57
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>];
|
|
58
|
-
}
|
|
59
|
-
type _object = _i_core._T_State_Group<null, readonly [
|
|
60
|
-
'key value array',
|
|
61
|
-
_i_core._T_List<null, {
|
|
62
|
-
readonly 'key': string;
|
|
63
|
-
readonly 'value': _T_Value;
|
|
64
|
-
}>
|
|
65
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>;
|
|
66
|
-
namespace _number {
|
|
67
|
-
namespace SG {
|
|
68
|
-
type integer = number;
|
|
69
|
-
type float = number;
|
|
70
|
-
}
|
|
71
|
-
type SG = readonly ['integer', number] | readonly ['float', number];
|
|
72
|
-
}
|
|
73
|
-
type _number = _i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>;
|
|
74
|
-
type _string = string;
|
|
75
|
-
type _boolean = boolean;
|
|
76
|
-
type _null = null;
|
|
77
|
-
}
|
|
78
|
-
type SG = readonly ['array', _i_core._T_List<null, _T_Value>] | readonly [
|
|
79
|
-
'object',
|
|
80
|
-
_i_core._T_State_Group<null, readonly [
|
|
81
|
-
'key value array',
|
|
82
|
-
_i_core._T_List<null, {
|
|
83
|
-
readonly 'key': string;
|
|
84
|
-
readonly 'value': _T_Value;
|
|
85
|
-
}>
|
|
86
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>
|
|
87
|
-
] | readonly [
|
|
88
|
-
'number',
|
|
89
|
-
_i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>
|
|
90
|
-
] | readonly ['string', string] | readonly ['boolean', boolean] | readonly ['null', null];
|
|
91
|
-
}
|
|
92
|
-
export declare namespace _T_Document {
|
|
93
|
-
}
|
|
94
|
-
export declare namespace Value {
|
|
95
|
-
namespace SG {
|
|
96
|
-
namespace array {
|
|
97
|
-
namespace L {
|
|
98
|
-
}
|
|
99
|
-
type L = _T_Value;
|
|
100
|
-
}
|
|
101
|
-
type array = _i_core._T_List<null, _T_Value>;
|
|
102
|
-
namespace _object {
|
|
103
|
-
namespace SG {
|
|
104
|
-
namespace key_value_array {
|
|
105
|
-
namespace L {
|
|
106
|
-
type key = string;
|
|
107
|
-
namespace value {
|
|
108
|
-
}
|
|
109
|
-
type value = _T_Value;
|
|
110
|
-
}
|
|
111
|
-
type L = {
|
|
112
|
-
readonly 'key': string;
|
|
113
|
-
readonly 'value': _T_Value;
|
|
114
|
-
};
|
|
115
|
-
}
|
|
116
|
-
type key_value_array = _i_core._T_List<null, {
|
|
117
|
-
readonly 'key': string;
|
|
118
|
-
readonly 'value': _T_Value;
|
|
119
|
-
}>;
|
|
120
|
-
namespace dictionary {
|
|
121
|
-
namespace D {
|
|
122
|
-
}
|
|
123
|
-
type D = _T_Value;
|
|
124
|
-
}
|
|
125
|
-
type dictionary = _i_core._T_Dictionary<null, _T_Value>;
|
|
126
|
-
}
|
|
127
|
-
type SG = readonly [
|
|
128
|
-
'key value array',
|
|
129
|
-
_i_core._T_List<null, {
|
|
130
|
-
readonly 'key': string;
|
|
131
|
-
readonly 'value': _T_Value;
|
|
132
|
-
}>
|
|
133
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>];
|
|
134
|
-
}
|
|
135
|
-
type _object = _i_core._T_State_Group<null, readonly [
|
|
136
|
-
'key value array',
|
|
137
|
-
_i_core._T_List<null, {
|
|
138
|
-
readonly 'key': string;
|
|
139
|
-
readonly 'value': _T_Value;
|
|
140
|
-
}>
|
|
141
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>;
|
|
142
|
-
namespace _number {
|
|
143
|
-
namespace SG {
|
|
144
|
-
type integer = number;
|
|
145
|
-
type float = number;
|
|
146
|
-
}
|
|
147
|
-
type SG = readonly ['integer', number] | readonly ['float', number];
|
|
148
|
-
}
|
|
149
|
-
type _number = _i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>;
|
|
150
|
-
type _string = string;
|
|
151
|
-
type _boolean = boolean;
|
|
152
|
-
type _null = null;
|
|
153
|
-
}
|
|
154
|
-
type SG = readonly ['array', _i_core._T_List<null, _T_Value>] | readonly [
|
|
155
|
-
'object',
|
|
156
|
-
_i_core._T_State_Group<null, readonly [
|
|
157
|
-
'key value array',
|
|
158
|
-
_i_core._T_List<null, {
|
|
159
|
-
readonly 'key': string;
|
|
160
|
-
readonly 'value': _T_Value;
|
|
161
|
-
}>
|
|
162
|
-
] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>]>
|
|
163
|
-
] | readonly [
|
|
164
|
-
'number',
|
|
165
|
-
_i_core._T_State_Group<null, readonly ['integer', number] | readonly ['float', number]>
|
|
166
|
-
] | readonly ['string', string] | readonly ['boolean', boolean] | readonly ['null', null];
|
|
167
|
-
}
|
|
168
|
-
export declare namespace Document {
|
|
169
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFyZ2V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvanNvbi9kYXRhX3R5cGVzL3RhcmdldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import * as _i_out from "./data_types/target";
|
|
2
|
-
import * as _i_vd from "./value_deserializers";
|
|
3
|
-
export type _T_Value = ($$_: string, $$_p: {
|
|
4
|
-
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
5
|
-
}) => _i_out._T_Value;
|
|
6
|
-
export type _T_Document = ($$_: string, $$_p: {
|
|
7
|
-
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
8
|
-
}) => _i_out._T_Document;
|
|
9
|
-
export type Value = _T_Value;
|
|
10
|
-
export type Document = _T_Document;
|
|
11
|
-
export declare namespace _T_Value {
|
|
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_Value;
|
|
21
|
-
}
|
|
22
|
-
export declare namespace _T_Document {
|
|
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_Document;
|
|
32
|
-
}
|
|
33
|
-
export declare namespace Value {
|
|
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_Value;
|
|
43
|
-
}
|
|
44
|
-
export declare namespace Document {
|
|
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_Document;
|
|
54
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9qc29uL2Rlc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import * as _i_out from "../../core/astn_target";
|
|
2
|
-
import * as _i_in from "./data_types/source";
|
|
3
|
-
import * as _i_vs from "./value_serializers";
|
|
4
|
-
export type _T_Value = ($$_: _i_in._T_Value, $$_p: {
|
|
5
|
-
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
6
|
-
}) => _i_out._T_Value;
|
|
7
|
-
export type _T_Document = ($$_: _i_in._T_Document, $$_p: {
|
|
8
|
-
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
9
|
-
}) => _i_out._T_Value;
|
|
10
|
-
export type Value = _T_Value;
|
|
11
|
-
export type Document = _T_Document;
|
|
12
|
-
export declare namespace _T_Value {
|
|
13
|
-
namespace CONTEXT {
|
|
14
|
-
}
|
|
15
|
-
type CONTEXT = _i_in._T_Value;
|
|
16
|
-
namespace PARAMS {
|
|
17
|
-
namespace value_serializers {
|
|
18
|
-
}
|
|
19
|
-
type value_serializers = _i_vs._T_Value_Serializers;
|
|
20
|
-
}
|
|
21
|
-
namespace RESULT {
|
|
22
|
-
}
|
|
23
|
-
type RESULT = _i_out._T_Value;
|
|
24
|
-
}
|
|
25
|
-
export declare namespace _T_Document {
|
|
26
|
-
namespace CONTEXT {
|
|
27
|
-
}
|
|
28
|
-
type CONTEXT = _i_in._T_Document;
|
|
29
|
-
namespace PARAMS {
|
|
30
|
-
namespace value_serializers {
|
|
31
|
-
}
|
|
32
|
-
type value_serializers = _i_vs._T_Value_Serializers;
|
|
33
|
-
}
|
|
34
|
-
namespace RESULT {
|
|
35
|
-
}
|
|
36
|
-
type RESULT = _i_out._T_Value;
|
|
37
|
-
}
|
|
38
|
-
export declare namespace Value {
|
|
39
|
-
namespace CONTEXT {
|
|
40
|
-
}
|
|
41
|
-
type CONTEXT = _i_in._T_Value;
|
|
42
|
-
namespace PARAMS {
|
|
43
|
-
namespace value_serializers {
|
|
44
|
-
}
|
|
45
|
-
type value_serializers = _i_vs._T_Value_Serializers;
|
|
46
|
-
}
|
|
47
|
-
namespace RESULT {
|
|
48
|
-
}
|
|
49
|
-
type RESULT = _i_out._T_Value;
|
|
50
|
-
}
|
|
51
|
-
export declare namespace Document {
|
|
52
|
-
namespace CONTEXT {
|
|
53
|
-
}
|
|
54
|
-
type CONTEXT = _i_in._T_Document;
|
|
55
|
-
namespace PARAMS {
|
|
56
|
-
namespace value_serializers {
|
|
57
|
-
}
|
|
58
|
-
type value_serializers = _i_vs._T_Value_Serializers;
|
|
59
|
-
}
|
|
60
|
-
namespace RESULT {
|
|
61
|
-
}
|
|
62
|
-
type RESULT = _i_out._T_Value;
|
|
63
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFyc2hhbGwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9qc29uL21hcnNoYWxsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import * as _i_out from "./data_types/target";
|
|
2
|
-
import * as _i_in from "./data_types/source";
|
|
3
|
-
export type _T_Value = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Value;
|
|
4
|
-
export type _T_Document = ($$_: _i_in._T_Document, $$_p: null) => _i_out._T_Document;
|
|
5
|
-
export type Value = _T_Value;
|
|
6
|
-
export type Document = _T_Document;
|
|
7
|
-
export declare namespace _T_Value {
|
|
8
|
-
namespace CONTEXT {
|
|
9
|
-
}
|
|
10
|
-
type CONTEXT = _i_in._T_Value;
|
|
11
|
-
namespace PARAMS {
|
|
12
|
-
}
|
|
13
|
-
namespace RESULT {
|
|
14
|
-
}
|
|
15
|
-
type RESULT = _i_out._T_Value;
|
|
16
|
-
}
|
|
17
|
-
export declare namespace _T_Document {
|
|
18
|
-
namespace CONTEXT {
|
|
19
|
-
}
|
|
20
|
-
type CONTEXT = _i_in._T_Document;
|
|
21
|
-
namespace PARAMS {
|
|
22
|
-
}
|
|
23
|
-
namespace RESULT {
|
|
24
|
-
}
|
|
25
|
-
type RESULT = _i_out._T_Document;
|
|
26
|
-
}
|
|
27
|
-
export declare namespace Value {
|
|
28
|
-
namespace CONTEXT {
|
|
29
|
-
}
|
|
30
|
-
type CONTEXT = _i_in._T_Value;
|
|
31
|
-
namespace PARAMS {
|
|
32
|
-
}
|
|
33
|
-
namespace RESULT {
|
|
34
|
-
}
|
|
35
|
-
type RESULT = _i_out._T_Value;
|
|
36
|
-
}
|
|
37
|
-
export declare namespace Document {
|
|
38
|
-
namespace CONTEXT {
|
|
39
|
-
}
|
|
40
|
-
type CONTEXT = _i_in._T_Document;
|
|
41
|
-
namespace PARAMS {
|
|
42
|
-
}
|
|
43
|
-
namespace RESULT {
|
|
44
|
-
}
|
|
45
|
-
type RESULT = _i_out._T_Document;
|
|
46
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0ZV9ib2lsZXJwbGF0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2pzb24vbWlncmF0ZV9ib2lsZXJwbGF0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import * as _i_in from "./data_types/source";
|
|
2
|
-
import * as _i_vs from "./value_serializers";
|
|
3
|
-
export type _T_Value = ($$_: _i_in._T_Value, $$_p: {
|
|
4
|
-
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
5
|
-
}) => string;
|
|
6
|
-
export type _T_Document = ($$_: _i_in._T_Document, $$_p: {
|
|
7
|
-
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
8
|
-
}) => string;
|
|
9
|
-
export type Value = _T_Value;
|
|
10
|
-
export type Document = _T_Document;
|
|
11
|
-
export declare namespace _T_Value {
|
|
12
|
-
namespace CONTEXT {
|
|
13
|
-
}
|
|
14
|
-
type CONTEXT = _i_in._T_Value;
|
|
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_Document {
|
|
23
|
-
namespace CONTEXT {
|
|
24
|
-
}
|
|
25
|
-
type CONTEXT = _i_in._T_Document;
|
|
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 Value {
|
|
34
|
-
namespace CONTEXT {
|
|
35
|
-
}
|
|
36
|
-
type CONTEXT = _i_in._T_Value;
|
|
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 Document {
|
|
45
|
-
namespace CONTEXT {
|
|
46
|
-
}
|
|
47
|
-
type CONTEXT = _i_in._T_Document;
|
|
48
|
-
namespace PARAMS {
|
|
49
|
-
namespace value_serializers {
|
|
50
|
-
}
|
|
51
|
-
type value_serializers = _i_vs._T_Value_Serializers;
|
|
52
|
-
}
|
|
53
|
-
type RESULT = string;
|
|
54
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvanNvbi9zZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import * as _i_out from "./data_types/target";
|
|
2
|
-
import * as _i_in from "../../core/astn_source";
|
|
3
|
-
import * as _i_vd from "./value_deserializers";
|
|
4
|
-
export type _T_Value = ($$_: _i_in._T_Value, $$_p: {
|
|
5
|
-
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
6
|
-
}) => _i_out._T_Value;
|
|
7
|
-
export type _T_Document = ($$_: _i_in._T_Value, $$_p: {
|
|
8
|
-
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
9
|
-
}) => _i_out._T_Document;
|
|
10
|
-
export type Value = _T_Value;
|
|
11
|
-
export type Document = _T_Document;
|
|
12
|
-
export declare namespace _T_Value {
|
|
13
|
-
namespace CONTEXT {
|
|
14
|
-
}
|
|
15
|
-
type CONTEXT = _i_in._T_Value;
|
|
16
|
-
namespace PARAMS {
|
|
17
|
-
namespace value_deserializers {
|
|
18
|
-
}
|
|
19
|
-
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
20
|
-
}
|
|
21
|
-
namespace RESULT {
|
|
22
|
-
}
|
|
23
|
-
type RESULT = _i_out._T_Value;
|
|
24
|
-
}
|
|
25
|
-
export declare namespace _T_Document {
|
|
26
|
-
namespace CONTEXT {
|
|
27
|
-
}
|
|
28
|
-
type CONTEXT = _i_in._T_Value;
|
|
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_Document;
|
|
37
|
-
}
|
|
38
|
-
export declare namespace Value {
|
|
39
|
-
namespace CONTEXT {
|
|
40
|
-
}
|
|
41
|
-
type CONTEXT = _i_in._T_Value;
|
|
42
|
-
namespace PARAMS {
|
|
43
|
-
namespace value_deserializers {
|
|
44
|
-
}
|
|
45
|
-
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
46
|
-
}
|
|
47
|
-
namespace RESULT {
|
|
48
|
-
}
|
|
49
|
-
type RESULT = _i_out._T_Value;
|
|
50
|
-
}
|
|
51
|
-
export declare namespace Document {
|
|
52
|
-
namespace CONTEXT {
|
|
53
|
-
}
|
|
54
|
-
type CONTEXT = _i_in._T_Value;
|
|
55
|
-
namespace PARAMS {
|
|
56
|
-
namespace value_deserializers {
|
|
57
|
-
}
|
|
58
|
-
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
59
|
-
}
|
|
60
|
-
namespace RESULT {
|
|
61
|
-
}
|
|
62
|
-
type RESULT = _i_out._T_Document;
|
|
63
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5tYXJzaGFsbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2pzb24vdW5tYXJzaGFsbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|