exupery 0.1.9 → 0.1.10

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.
Files changed (50) hide show
  1. package/dist/generated/implementation/generic/unmarshall.d.ts +21 -0
  2. package/dist/generated/implementation/generic/unmarshall.js +93 -0
  3. package/dist/generated/implementation/schemas/implementation/marshall.d.ts +8 -0
  4. package/dist/generated/implementation/schemas/implementation/marshall.js +536 -0
  5. package/dist/generated/implementation/schemas/implementation/resolve.js +15 -5
  6. package/dist/generated/implementation/schemas/implementation/serializer.d.ts +7 -7
  7. package/dist/generated/implementation/schemas/implementation/serializer.js +159 -110
  8. package/dist/generated/implementation/schemas/implementation/unmarshall.d.ts +8 -0
  9. package/dist/generated/implementation/schemas/implementation/unmarshall.js +303 -0
  10. package/dist/generated/implementation/schemas/interface/marshall.d.ts +8 -0
  11. package/dist/generated/implementation/schemas/interface/marshall.js +299 -0
  12. package/dist/generated/implementation/schemas/interface/serializer.d.ts +7 -7
  13. package/dist/generated/implementation/schemas/interface/serializer.js +91 -79
  14. package/dist/generated/implementation/schemas/interface/unmarshall.d.ts +8 -0
  15. package/dist/generated/implementation/schemas/interface/unmarshall.js +163 -0
  16. package/dist/generated/implementation/schemas/typescript_light/marshall.d.ts +11 -0
  17. package/dist/generated/implementation/schemas/typescript_light/marshall.js +429 -0
  18. package/dist/generated/implementation/schemas/typescript_light/serializer.d.ts +10 -10
  19. package/dist/generated/implementation/schemas/typescript_light/serializer.js +129 -109
  20. package/dist/generated/implementation/schemas/typescript_light/unmarshall.d.ts +11 -0
  21. package/dist/generated/implementation/schemas/typescript_light/unmarshall.js +253 -0
  22. package/dist/generated/interface/core/astn_source.d.ts +116 -0
  23. package/dist/generated/interface/core/astn_source.js +3 -0
  24. package/dist/generated/interface/schemas/implementation/marshall.d.ts +256 -0
  25. package/dist/generated/interface/schemas/implementation/marshall.js +3 -0
  26. package/dist/generated/interface/schemas/implementation/migrate_boilerplate.d.ts +170 -0
  27. package/dist/generated/interface/schemas/implementation/migrate_boilerplate.js +3 -0
  28. package/dist/generated/interface/schemas/implementation/resolved.d.ts +55 -38
  29. package/dist/generated/interface/schemas/implementation/serializer.d.ts +128 -28
  30. package/dist/generated/interface/schemas/implementation/unmarshall.d.ts +170 -0
  31. package/dist/generated/interface/schemas/implementation/unmarshall.js +3 -0
  32. package/dist/generated/interface/schemas/implementation/unresolved.d.ts +55 -38
  33. package/dist/generated/interface/schemas/interface/marshall.d.ts +256 -0
  34. package/dist/generated/interface/schemas/interface/marshall.js +3 -0
  35. package/dist/generated/interface/schemas/interface/migrate_boilerplate.d.ts +170 -0
  36. package/dist/generated/interface/schemas/interface/migrate_boilerplate.js +3 -0
  37. package/dist/generated/interface/schemas/interface/serializer.d.ts +128 -28
  38. package/dist/generated/interface/schemas/interface/unmarshall.d.ts +170 -0
  39. package/dist/generated/interface/schemas/interface/unmarshall.js +3 -0
  40. package/dist/generated/interface/schemas/typescript_light/marshall.d.ts +346 -0
  41. package/dist/generated/interface/schemas/typescript_light/marshall.js +3 -0
  42. package/dist/generated/interface/schemas/typescript_light/migrate_boilerplate.d.ts +222 -0
  43. package/dist/generated/interface/schemas/typescript_light/migrate_boilerplate.js +3 -0
  44. package/dist/generated/interface/schemas/typescript_light/serializer.d.ts +164 -40
  45. package/dist/generated/interface/schemas/typescript_light/unmarshall.d.ts +222 -0
  46. package/dist/generated/interface/schemas/typescript_light/unmarshall.js +3 -0
  47. package/dist/shorthands/implementation.d.ts +1 -1
  48. package/dist/shorthands/implementation.js +8 -6
  49. package/dist/transformations/implementation/typescript_light.js +14 -4
  50. package/package.json +1 -1
@@ -0,0 +1,170 @@
1
+ import * as _i_in from "./resolved";
2
+ import * as _i_out from "./unresolved";
3
+ export type _T_Imports = ($$_: _i_in._T_Imports, $$_p: null) => _i_out._T_Imports<null>;
4
+ export type _T_Module = ($$_: _i_in._T_Module, $$_p: null) => _i_out._T_Module<null>;
5
+ export type _T_Module_Set = ($$_: _i_in._T_Module_Set, $$_p: null) => _i_out._T_Module_Set<null>;
6
+ export type _T_Type = ($$_: _i_in._T_Type, $$_p: null) => _i_out._T_Type<null>;
7
+ export type _T_Type_Arguments = ($$_: _i_in._T_Type_Arguments, $$_p: null) => _i_out._T_Type_Arguments<null>;
8
+ export type _T_Type_Parameter_Selection = ($$_: _i_in._T_Type_Parameter_Selection, $$_p: null) => _i_out._T_Type_Parameter_Selection<null>;
9
+ export type _T_Type_Parameters = ($$_: _i_in._T_Type_Parameters, $$_p: null) => _i_out._T_Type_Parameters<null>;
10
+ export type Imports = _T_Imports;
11
+ export type Module = _T_Module;
12
+ export type Module_Set = _T_Module_Set;
13
+ export type Type = _T_Type;
14
+ export type Type_Arguments = _T_Type_Arguments;
15
+ export type Type_Parameter_Selection = _T_Type_Parameter_Selection;
16
+ export type Type_Parameters = _T_Type_Parameters;
17
+ export declare namespace _T_Imports {
18
+ namespace CONTEXT {
19
+ }
20
+ type CONTEXT = _i_in._T_Imports;
21
+ namespace PARAMS {
22
+ }
23
+ namespace RESULT {
24
+ type annotation = null;
25
+ }
26
+ type RESULT = _i_out._T_Imports<null>;
27
+ }
28
+ export declare namespace _T_Module {
29
+ namespace CONTEXT {
30
+ }
31
+ type CONTEXT = _i_in._T_Module;
32
+ namespace PARAMS {
33
+ }
34
+ namespace RESULT {
35
+ type annotation = null;
36
+ }
37
+ type RESULT = _i_out._T_Module<null>;
38
+ }
39
+ export declare namespace _T_Module_Set {
40
+ namespace CONTEXT {
41
+ }
42
+ type CONTEXT = _i_in._T_Module_Set;
43
+ namespace PARAMS {
44
+ }
45
+ namespace RESULT {
46
+ type annotation = null;
47
+ }
48
+ type RESULT = _i_out._T_Module_Set<null>;
49
+ }
50
+ export declare namespace _T_Type {
51
+ namespace CONTEXT {
52
+ }
53
+ type CONTEXT = _i_in._T_Type;
54
+ namespace PARAMS {
55
+ }
56
+ namespace RESULT {
57
+ type annotation = null;
58
+ }
59
+ type RESULT = _i_out._T_Type<null>;
60
+ }
61
+ export declare namespace _T_Type_Arguments {
62
+ namespace CONTEXT {
63
+ }
64
+ type CONTEXT = _i_in._T_Type_Arguments;
65
+ namespace PARAMS {
66
+ }
67
+ namespace RESULT {
68
+ type annotation = null;
69
+ }
70
+ type RESULT = _i_out._T_Type_Arguments<null>;
71
+ }
72
+ export declare namespace _T_Type_Parameter_Selection {
73
+ namespace CONTEXT {
74
+ }
75
+ type CONTEXT = _i_in._T_Type_Parameter_Selection;
76
+ namespace PARAMS {
77
+ }
78
+ namespace RESULT {
79
+ type annotation = null;
80
+ }
81
+ type RESULT = _i_out._T_Type_Parameter_Selection<null>;
82
+ }
83
+ export declare namespace _T_Type_Parameters {
84
+ namespace CONTEXT {
85
+ }
86
+ type CONTEXT = _i_in._T_Type_Parameters;
87
+ namespace PARAMS {
88
+ }
89
+ namespace RESULT {
90
+ type annotation = null;
91
+ }
92
+ type RESULT = _i_out._T_Type_Parameters<null>;
93
+ }
94
+ export declare namespace Imports {
95
+ namespace CONTEXT {
96
+ }
97
+ type CONTEXT = _i_in._T_Imports;
98
+ namespace PARAMS {
99
+ }
100
+ namespace RESULT {
101
+ type annotation = null;
102
+ }
103
+ type RESULT = _i_out._T_Imports<null>;
104
+ }
105
+ export declare namespace Module {
106
+ namespace CONTEXT {
107
+ }
108
+ type CONTEXT = _i_in._T_Module;
109
+ namespace PARAMS {
110
+ }
111
+ namespace RESULT {
112
+ type annotation = null;
113
+ }
114
+ type RESULT = _i_out._T_Module<null>;
115
+ }
116
+ export declare namespace Module_Set {
117
+ namespace CONTEXT {
118
+ }
119
+ type CONTEXT = _i_in._T_Module_Set;
120
+ namespace PARAMS {
121
+ }
122
+ namespace RESULT {
123
+ type annotation = null;
124
+ }
125
+ type RESULT = _i_out._T_Module_Set<null>;
126
+ }
127
+ export declare namespace Type {
128
+ namespace CONTEXT {
129
+ }
130
+ type CONTEXT = _i_in._T_Type;
131
+ namespace PARAMS {
132
+ }
133
+ namespace RESULT {
134
+ type annotation = null;
135
+ }
136
+ type RESULT = _i_out._T_Type<null>;
137
+ }
138
+ export declare namespace Type_Arguments {
139
+ namespace CONTEXT {
140
+ }
141
+ type CONTEXT = _i_in._T_Type_Arguments;
142
+ namespace PARAMS {
143
+ }
144
+ namespace RESULT {
145
+ type annotation = null;
146
+ }
147
+ type RESULT = _i_out._T_Type_Arguments<null>;
148
+ }
149
+ export declare namespace Type_Parameter_Selection {
150
+ namespace CONTEXT {
151
+ }
152
+ type CONTEXT = _i_in._T_Type_Parameter_Selection;
153
+ namespace PARAMS {
154
+ }
155
+ namespace RESULT {
156
+ type annotation = null;
157
+ }
158
+ type RESULT = _i_out._T_Type_Parameter_Selection<null>;
159
+ }
160
+ export declare namespace Type_Parameters {
161
+ namespace CONTEXT {
162
+ }
163
+ type CONTEXT = _i_in._T_Type_Parameters;
164
+ namespace PARAMS {
165
+ }
166
+ namespace RESULT {
167
+ type annotation = null;
168
+ }
169
+ type RESULT = _i_out._T_Type_Parameters<null>;
170
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0ZV9ib2lsZXJwbGF0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvaW50ZXJmYWNlL21pZ3JhdGVfYm9pbGVycGxhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -1,154 +1,254 @@
1
1
  import * as _i_in from "./resolved";
2
2
  import * as _i_out from "../../core/astn_target";
3
- export type _T_Imports = ($$_: _i_in._T_Imports, $$_p: null) => _i_out._T_Value;
4
- export type _T_Module = ($$_: _i_in._T_Module, $$_p: null) => _i_out._T_Value;
5
- export type _T_Module_Set = ($$_: _i_in._T_Module_Set, $$_p: null) => _i_out._T_Value;
6
- export type _T_Type = ($$_: _i_in._T_Type, $$_p: null) => _i_out._T_Value;
7
- export type _T_Type_Arguments = ($$_: _i_in._T_Type_Arguments, $$_p: null) => _i_out._T_Value;
8
- export type _T_Type_Parameter_Selection = ($$_: _i_in._T_Type_Parameter_Selection, $$_p: null) => _i_out._T_Value;
9
- export type _T_Type_Parameters = ($$_: _i_in._T_Type_Parameters, $$_p: null) => _i_out._T_Value;
10
- export type Imports = _T_Imports;
11
- export type Module = _T_Module;
12
- export type Module_Set = _T_Module_Set;
13
- export type Type = _T_Type;
14
- export type Type_Arguments = _T_Type_Arguments;
15
- export type Type_Parameter_Selection = _T_Type_Parameter_Selection;
16
- export type Type_Parameters = _T_Type_Parameters;
17
- export declare namespace _T_Imports {
3
+ export type _T_Value_Serializers = {
4
+ readonly 'boolean': ($$_: boolean, $$_p: null) => string;
5
+ readonly 'custom numbers': null;
6
+ readonly 'default number': ($$_: number, $$_p: null) => string;
7
+ };
8
+ export type _T_s_Imports = ($$_: _i_in._T_Imports, $$_p: {
9
+ readonly 'value serializers': _T_Value_Serializers;
10
+ }) => _i_out._T_Value;
11
+ export type _T_s_Module = ($$_: _i_in._T_Module, $$_p: {
12
+ readonly 'value serializers': _T_Value_Serializers;
13
+ }) => _i_out._T_Value;
14
+ export type _T_s_Module_Set = ($$_: _i_in._T_Module_Set, $$_p: {
15
+ readonly 'value serializers': _T_Value_Serializers;
16
+ }) => _i_out._T_Value;
17
+ export type _T_s_Type = ($$_: _i_in._T_Type, $$_p: {
18
+ readonly 'value serializers': _T_Value_Serializers;
19
+ }) => _i_out._T_Value;
20
+ export type _T_s_Type_Arguments = ($$_: _i_in._T_Type_Arguments, $$_p: {
21
+ readonly 'value serializers': _T_Value_Serializers;
22
+ }) => _i_out._T_Value;
23
+ export type _T_s_Type_Parameter_Selection = ($$_: _i_in._T_Type_Parameter_Selection, $$_p: {
24
+ readonly 'value serializers': _T_Value_Serializers;
25
+ }) => _i_out._T_Value;
26
+ export type _T_s_Type_Parameters = ($$_: _i_in._T_Type_Parameters, $$_p: {
27
+ readonly 'value serializers': _T_Value_Serializers;
28
+ }) => _i_out._T_Value;
29
+ export type Value_Serializers = _T_Value_Serializers;
30
+ export type s_Imports = _T_s_Imports;
31
+ export type s_Module = _T_s_Module;
32
+ export type s_Module_Set = _T_s_Module_Set;
33
+ export type s_Type = _T_s_Type;
34
+ export type s_Type_Arguments = _T_s_Type_Arguments;
35
+ export type s_Type_Parameter_Selection = _T_s_Type_Parameter_Selection;
36
+ export type s_Type_Parameters = _T_s_Type_Parameters;
37
+ export declare namespace _T_Value_Serializers {
38
+ namespace _boolean {
39
+ type CONTEXT = boolean;
40
+ namespace PARAMS {
41
+ }
42
+ type RESULT = string;
43
+ }
44
+ type _boolean = ($$_: boolean, $$_p: null) => string;
45
+ namespace custom_numbers {
46
+ }
47
+ type custom_numbers = null;
48
+ namespace default_number {
49
+ type CONTEXT = number;
50
+ namespace PARAMS {
51
+ }
52
+ type RESULT = string;
53
+ }
54
+ type default_number = ($$_: number, $$_p: null) => string;
55
+ }
56
+ export declare namespace _T_s_Imports {
18
57
  namespace CONTEXT {
19
58
  }
20
59
  type CONTEXT = _i_in._T_Imports;
21
60
  namespace PARAMS {
61
+ namespace value_serializers {
62
+ }
63
+ type value_serializers = _T_Value_Serializers;
22
64
  }
23
65
  namespace RESULT {
24
66
  }
25
67
  type RESULT = _i_out._T_Value;
26
68
  }
27
- export declare namespace _T_Module {
69
+ export declare namespace _T_s_Module {
28
70
  namespace CONTEXT {
29
71
  }
30
72
  type CONTEXT = _i_in._T_Module;
31
73
  namespace PARAMS {
74
+ namespace value_serializers {
75
+ }
76
+ type value_serializers = _T_Value_Serializers;
32
77
  }
33
78
  namespace RESULT {
34
79
  }
35
80
  type RESULT = _i_out._T_Value;
36
81
  }
37
- export declare namespace _T_Module_Set {
82
+ export declare namespace _T_s_Module_Set {
38
83
  namespace CONTEXT {
39
84
  }
40
85
  type CONTEXT = _i_in._T_Module_Set;
41
86
  namespace PARAMS {
87
+ namespace value_serializers {
88
+ }
89
+ type value_serializers = _T_Value_Serializers;
42
90
  }
43
91
  namespace RESULT {
44
92
  }
45
93
  type RESULT = _i_out._T_Value;
46
94
  }
47
- export declare namespace _T_Type {
95
+ export declare namespace _T_s_Type {
48
96
  namespace CONTEXT {
49
97
  }
50
98
  type CONTEXT = _i_in._T_Type;
51
99
  namespace PARAMS {
100
+ namespace value_serializers {
101
+ }
102
+ type value_serializers = _T_Value_Serializers;
52
103
  }
53
104
  namespace RESULT {
54
105
  }
55
106
  type RESULT = _i_out._T_Value;
56
107
  }
57
- export declare namespace _T_Type_Arguments {
108
+ export declare namespace _T_s_Type_Arguments {
58
109
  namespace CONTEXT {
59
110
  }
60
111
  type CONTEXT = _i_in._T_Type_Arguments;
61
112
  namespace PARAMS {
113
+ namespace value_serializers {
114
+ }
115
+ type value_serializers = _T_Value_Serializers;
62
116
  }
63
117
  namespace RESULT {
64
118
  }
65
119
  type RESULT = _i_out._T_Value;
66
120
  }
67
- export declare namespace _T_Type_Parameter_Selection {
121
+ export declare namespace _T_s_Type_Parameter_Selection {
68
122
  namespace CONTEXT {
69
123
  }
70
124
  type CONTEXT = _i_in._T_Type_Parameter_Selection;
71
125
  namespace PARAMS {
126
+ namespace value_serializers {
127
+ }
128
+ type value_serializers = _T_Value_Serializers;
72
129
  }
73
130
  namespace RESULT {
74
131
  }
75
132
  type RESULT = _i_out._T_Value;
76
133
  }
77
- export declare namespace _T_Type_Parameters {
134
+ export declare namespace _T_s_Type_Parameters {
78
135
  namespace CONTEXT {
79
136
  }
80
137
  type CONTEXT = _i_in._T_Type_Parameters;
81
138
  namespace PARAMS {
139
+ namespace value_serializers {
140
+ }
141
+ type value_serializers = _T_Value_Serializers;
82
142
  }
83
143
  namespace RESULT {
84
144
  }
85
145
  type RESULT = _i_out._T_Value;
86
146
  }
87
- export declare namespace Imports {
147
+ export declare namespace Value_Serializers {
148
+ namespace _boolean {
149
+ type CONTEXT = boolean;
150
+ namespace PARAMS {
151
+ }
152
+ type RESULT = string;
153
+ }
154
+ type _boolean = ($$_: boolean, $$_p: null) => string;
155
+ namespace custom_numbers {
156
+ }
157
+ type custom_numbers = null;
158
+ namespace default_number {
159
+ type CONTEXT = number;
160
+ namespace PARAMS {
161
+ }
162
+ type RESULT = string;
163
+ }
164
+ type default_number = ($$_: number, $$_p: null) => string;
165
+ }
166
+ export declare namespace s_Imports {
88
167
  namespace CONTEXT {
89
168
  }
90
169
  type CONTEXT = _i_in._T_Imports;
91
170
  namespace PARAMS {
171
+ namespace value_serializers {
172
+ }
173
+ type value_serializers = _T_Value_Serializers;
92
174
  }
93
175
  namespace RESULT {
94
176
  }
95
177
  type RESULT = _i_out._T_Value;
96
178
  }
97
- export declare namespace Module {
179
+ export declare namespace s_Module {
98
180
  namespace CONTEXT {
99
181
  }
100
182
  type CONTEXT = _i_in._T_Module;
101
183
  namespace PARAMS {
184
+ namespace value_serializers {
185
+ }
186
+ type value_serializers = _T_Value_Serializers;
102
187
  }
103
188
  namespace RESULT {
104
189
  }
105
190
  type RESULT = _i_out._T_Value;
106
191
  }
107
- export declare namespace Module_Set {
192
+ export declare namespace s_Module_Set {
108
193
  namespace CONTEXT {
109
194
  }
110
195
  type CONTEXT = _i_in._T_Module_Set;
111
196
  namespace PARAMS {
197
+ namespace value_serializers {
198
+ }
199
+ type value_serializers = _T_Value_Serializers;
112
200
  }
113
201
  namespace RESULT {
114
202
  }
115
203
  type RESULT = _i_out._T_Value;
116
204
  }
117
- export declare namespace Type {
205
+ export declare namespace s_Type {
118
206
  namespace CONTEXT {
119
207
  }
120
208
  type CONTEXT = _i_in._T_Type;
121
209
  namespace PARAMS {
210
+ namespace value_serializers {
211
+ }
212
+ type value_serializers = _T_Value_Serializers;
122
213
  }
123
214
  namespace RESULT {
124
215
  }
125
216
  type RESULT = _i_out._T_Value;
126
217
  }
127
- export declare namespace Type_Arguments {
218
+ export declare namespace s_Type_Arguments {
128
219
  namespace CONTEXT {
129
220
  }
130
221
  type CONTEXT = _i_in._T_Type_Arguments;
131
222
  namespace PARAMS {
223
+ namespace value_serializers {
224
+ }
225
+ type value_serializers = _T_Value_Serializers;
132
226
  }
133
227
  namespace RESULT {
134
228
  }
135
229
  type RESULT = _i_out._T_Value;
136
230
  }
137
- export declare namespace Type_Parameter_Selection {
231
+ export declare namespace s_Type_Parameter_Selection {
138
232
  namespace CONTEXT {
139
233
  }
140
234
  type CONTEXT = _i_in._T_Type_Parameter_Selection;
141
235
  namespace PARAMS {
236
+ namespace value_serializers {
237
+ }
238
+ type value_serializers = _T_Value_Serializers;
142
239
  }
143
240
  namespace RESULT {
144
241
  }
145
242
  type RESULT = _i_out._T_Value;
146
243
  }
147
- export declare namespace Type_Parameters {
244
+ export declare namespace s_Type_Parameters {
148
245
  namespace CONTEXT {
149
246
  }
150
247
  type CONTEXT = _i_in._T_Type_Parameters;
151
248
  namespace PARAMS {
249
+ namespace value_serializers {
250
+ }
251
+ type value_serializers = _T_Value_Serializers;
152
252
  }
153
253
  namespace RESULT {
154
254
  }
@@ -0,0 +1,170 @@
1
+ import * as _i_in from "../../core/astn_source";
2
+ import * as _i_out from "./unresolved";
3
+ export type _T_Imports = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Imports<null>;
4
+ export type _T_Module = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Module<null>;
5
+ export type _T_Module_Set = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Module_Set<null>;
6
+ export type _T_Type = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Type<null>;
7
+ export type _T_Type_Arguments = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Type_Arguments<null>;
8
+ export type _T_Type_Parameter_Selection = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Type_Parameter_Selection<null>;
9
+ export type _T_Type_Parameters = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Type_Parameters<null>;
10
+ export type Imports = _T_Imports;
11
+ export type Module = _T_Module;
12
+ export type Module_Set = _T_Module_Set;
13
+ export type Type = _T_Type;
14
+ export type Type_Arguments = _T_Type_Arguments;
15
+ export type Type_Parameter_Selection = _T_Type_Parameter_Selection;
16
+ export type Type_Parameters = _T_Type_Parameters;
17
+ export declare namespace _T_Imports {
18
+ namespace CONTEXT {
19
+ }
20
+ type CONTEXT = _i_in._T_Value;
21
+ namespace PARAMS {
22
+ }
23
+ namespace RESULT {
24
+ type annotation = null;
25
+ }
26
+ type RESULT = _i_out._T_Imports<null>;
27
+ }
28
+ export declare namespace _T_Module {
29
+ namespace CONTEXT {
30
+ }
31
+ type CONTEXT = _i_in._T_Value;
32
+ namespace PARAMS {
33
+ }
34
+ namespace RESULT {
35
+ type annotation = null;
36
+ }
37
+ type RESULT = _i_out._T_Module<null>;
38
+ }
39
+ export declare namespace _T_Module_Set {
40
+ namespace CONTEXT {
41
+ }
42
+ type CONTEXT = _i_in._T_Value;
43
+ namespace PARAMS {
44
+ }
45
+ namespace RESULT {
46
+ type annotation = null;
47
+ }
48
+ type RESULT = _i_out._T_Module_Set<null>;
49
+ }
50
+ export declare namespace _T_Type {
51
+ namespace CONTEXT {
52
+ }
53
+ type CONTEXT = _i_in._T_Value;
54
+ namespace PARAMS {
55
+ }
56
+ namespace RESULT {
57
+ type annotation = null;
58
+ }
59
+ type RESULT = _i_out._T_Type<null>;
60
+ }
61
+ export declare namespace _T_Type_Arguments {
62
+ namespace CONTEXT {
63
+ }
64
+ type CONTEXT = _i_in._T_Value;
65
+ namespace PARAMS {
66
+ }
67
+ namespace RESULT {
68
+ type annotation = null;
69
+ }
70
+ type RESULT = _i_out._T_Type_Arguments<null>;
71
+ }
72
+ export declare namespace _T_Type_Parameter_Selection {
73
+ namespace CONTEXT {
74
+ }
75
+ type CONTEXT = _i_in._T_Value;
76
+ namespace PARAMS {
77
+ }
78
+ namespace RESULT {
79
+ type annotation = null;
80
+ }
81
+ type RESULT = _i_out._T_Type_Parameter_Selection<null>;
82
+ }
83
+ export declare namespace _T_Type_Parameters {
84
+ namespace CONTEXT {
85
+ }
86
+ type CONTEXT = _i_in._T_Value;
87
+ namespace PARAMS {
88
+ }
89
+ namespace RESULT {
90
+ type annotation = null;
91
+ }
92
+ type RESULT = _i_out._T_Type_Parameters<null>;
93
+ }
94
+ export declare namespace Imports {
95
+ namespace CONTEXT {
96
+ }
97
+ type CONTEXT = _i_in._T_Value;
98
+ namespace PARAMS {
99
+ }
100
+ namespace RESULT {
101
+ type annotation = null;
102
+ }
103
+ type RESULT = _i_out._T_Imports<null>;
104
+ }
105
+ export declare namespace Module {
106
+ namespace CONTEXT {
107
+ }
108
+ type CONTEXT = _i_in._T_Value;
109
+ namespace PARAMS {
110
+ }
111
+ namespace RESULT {
112
+ type annotation = null;
113
+ }
114
+ type RESULT = _i_out._T_Module<null>;
115
+ }
116
+ export declare namespace Module_Set {
117
+ namespace CONTEXT {
118
+ }
119
+ type CONTEXT = _i_in._T_Value;
120
+ namespace PARAMS {
121
+ }
122
+ namespace RESULT {
123
+ type annotation = null;
124
+ }
125
+ type RESULT = _i_out._T_Module_Set<null>;
126
+ }
127
+ export declare namespace Type {
128
+ namespace CONTEXT {
129
+ }
130
+ type CONTEXT = _i_in._T_Value;
131
+ namespace PARAMS {
132
+ }
133
+ namespace RESULT {
134
+ type annotation = null;
135
+ }
136
+ type RESULT = _i_out._T_Type<null>;
137
+ }
138
+ export declare namespace Type_Arguments {
139
+ namespace CONTEXT {
140
+ }
141
+ type CONTEXT = _i_in._T_Value;
142
+ namespace PARAMS {
143
+ }
144
+ namespace RESULT {
145
+ type annotation = null;
146
+ }
147
+ type RESULT = _i_out._T_Type_Arguments<null>;
148
+ }
149
+ export declare namespace Type_Parameter_Selection {
150
+ namespace CONTEXT {
151
+ }
152
+ type CONTEXT = _i_in._T_Value;
153
+ namespace PARAMS {
154
+ }
155
+ namespace RESULT {
156
+ type annotation = null;
157
+ }
158
+ type RESULT = _i_out._T_Type_Parameter_Selection<null>;
159
+ }
160
+ export declare namespace Type_Parameters {
161
+ namespace CONTEXT {
162
+ }
163
+ type CONTEXT = _i_in._T_Value;
164
+ namespace PARAMS {
165
+ }
166
+ namespace RESULT {
167
+ type annotation = null;
168
+ }
169
+ type RESULT = _i_out._T_Type_Parameters<null>;
170
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5tYXJzaGFsbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvaW50ZXJmYWNlL3VubWFyc2hhbGwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9