@idlizer/core 2.1.9-arktscgen-6 → 2.1.9-arktscgen-9
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/build/lib/src/IndentedPrinter.d.ts +2 -1
- package/build/lib/src/IndentedPrinter.js +9 -2
- package/build/lib/src/Language.d.ts +0 -1
- package/build/lib/src/Language.js +7 -8
- package/build/lib/src/LanguageWriters/ArgConvertors.d.ts +27 -40
- package/build/lib/src/LanguageWriters/ArgConvertors.js +167 -206
- package/build/lib/src/LanguageWriters/LanguageWriter.d.ts +13 -34
- package/build/lib/src/LanguageWriters/LanguageWriter.js +31 -82
- package/build/lib/src/LanguageWriters/convertors/ETSConvertors.js +2 -2
- package/build/lib/src/LanguageWriters/convertors/KotlinConvertors.d.ts +17 -1
- package/build/lib/src/LanguageWriters/convertors/KotlinConvertors.js +121 -6
- package/build/lib/src/LanguageWriters/convertors/TSConvertors.js +6 -0
- package/build/lib/src/LanguageWriters/writers/CJLanguageWriter.d.ts +2 -3
- package/build/lib/src/LanguageWriters/writers/CJLanguageWriter.js +9 -25
- package/build/lib/src/LanguageWriters/writers/CLikeLanguageWriter.d.ts +0 -5
- package/build/lib/src/LanguageWriters/writers/CLikeLanguageWriter.js +0 -9
- package/build/lib/src/LanguageWriters/writers/CppLanguageWriter.d.ts +4 -6
- package/build/lib/src/LanguageWriters/writers/CppLanguageWriter.js +15 -28
- package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.d.ts +14 -10
- package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.js +51 -74
- package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.d.ts +2 -8
- package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.js +11 -21
- package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.d.ts +12 -9
- package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.js +121 -32
- package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.d.ts +5 -6
- package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.js +17 -33
- package/build/lib/src/config.d.ts +402 -133
- package/build/lib/src/config.js +13 -7
- package/build/lib/src/diagnosticmessages.d.ts +45 -0
- package/build/lib/src/diagnosticmessages.js +66 -0
- package/build/lib/src/diagnostictypes.d.ts +140 -0
- package/build/lib/src/diagnostictypes.js +72 -0
- package/build/lib/src/formatter.d.ts +3 -0
- package/build/lib/src/formatter.js +98 -0
- package/build/lib/src/from-idl/deserialize.d.ts +1 -0
- package/build/lib/src/from-idl/deserialize.js +107 -5
- package/build/lib/src/idl.d.ts +8 -0
- package/build/lib/src/idl.js +16 -3
- package/build/lib/src/index.d.ts +7 -1
- package/build/lib/src/index.js +7 -1
- package/build/lib/src/peer-generation/Materialized.d.ts +2 -2
- package/build/lib/src/peer-generation/Materialized.js +4 -9
- package/build/lib/src/peer-generation/PeerLibrary.js +1 -5
- package/build/lib/src/peer-generation/PeerMethod.d.ts +0 -4
- package/build/lib/src/peer-generation/PeerMethod.js +18 -36
- package/build/lib/src/peer-generation/idl/common.js +1 -1
- package/build/lib/src/peer-generation/isMaterialized.js +0 -4
- package/build/lib/src/peer-generation/modules.d.ts +1 -0
- package/build/lib/src/peer-generation/modules.js +25 -6
- package/build/lib/src/peer-generation/unions.d.ts +0 -2
- package/build/lib/src/peer-generation/unions.js +3 -23
- package/build/lib/src/transformers/FqnTransformer.d.ts +4 -0
- package/build/lib/src/transformers/FqnTransformer.js +17 -0
- package/build/lib/src/transformers/GenericTransformer.d.ts +8 -0
- package/build/lib/src/transformers/GenericTransformer.js +141 -0
- package/build/lib/src/util.d.ts +5 -2
- package/build/lib/src/util.js +26 -12
- package/package.json +2 -2
- package/build/lib/src/peer-generation/isExternalType.d.ts +0 -4
- package/build/lib/src/peer-generation/isExternalType.js +0 -15
|
@@ -4,198 +4,231 @@ export declare const ModuleConfigurationSchema: {
|
|
|
4
4
|
validate: (x: unknown) => {
|
|
5
5
|
box: import("./configDescriber").ValidationResult<{
|
|
6
6
|
readonly name: string;
|
|
7
|
+
readonly external: boolean | undefined;
|
|
7
8
|
readonly packages: string[];
|
|
8
9
|
readonly useFoldersLayout: boolean | undefined;
|
|
9
10
|
}>;
|
|
10
11
|
success(): boolean;
|
|
11
12
|
unwrap(message?: string | undefined): {
|
|
12
13
|
readonly name: string;
|
|
14
|
+
readonly external: boolean | undefined;
|
|
13
15
|
readonly packages: string[];
|
|
14
16
|
readonly useFoldersLayout: boolean | undefined;
|
|
15
17
|
};
|
|
16
18
|
error(): string;
|
|
17
19
|
get(): import("./configDescriber").ValidationResult<{
|
|
18
20
|
readonly name: string;
|
|
21
|
+
readonly external: boolean | undefined;
|
|
19
22
|
readonly packages: string[];
|
|
20
23
|
readonly useFoldersLayout: boolean | undefined;
|
|
21
24
|
}>;
|
|
22
25
|
or<U>(x: U): {
|
|
23
26
|
box: import("./configDescriber").ValidationResult<{
|
|
24
27
|
readonly name: string;
|
|
28
|
+
readonly external: boolean | undefined;
|
|
25
29
|
readonly packages: string[];
|
|
26
30
|
readonly useFoldersLayout: boolean | undefined;
|
|
27
31
|
} | U>;
|
|
28
32
|
success(): boolean;
|
|
29
33
|
unwrap(message?: string | undefined): {
|
|
30
34
|
readonly name: string;
|
|
35
|
+
readonly external: boolean | undefined;
|
|
31
36
|
readonly packages: string[];
|
|
32
37
|
readonly useFoldersLayout: boolean | undefined;
|
|
33
38
|
} | U;
|
|
34
39
|
error(): string;
|
|
35
40
|
get(): import("./configDescriber").ValidationResult<{
|
|
36
41
|
readonly name: string;
|
|
42
|
+
readonly external: boolean | undefined;
|
|
37
43
|
readonly packages: string[];
|
|
38
44
|
readonly useFoldersLayout: boolean | undefined;
|
|
39
45
|
} | U>;
|
|
40
46
|
or<U_1>(x: U_1): {
|
|
41
47
|
box: import("./configDescriber").ValidationResult<{
|
|
42
48
|
readonly name: string;
|
|
49
|
+
readonly external: boolean | undefined;
|
|
43
50
|
readonly packages: string[];
|
|
44
51
|
readonly useFoldersLayout: boolean | undefined;
|
|
45
52
|
} | U | U_1>;
|
|
46
53
|
success(): boolean;
|
|
47
54
|
unwrap(message?: string | undefined): {
|
|
48
55
|
readonly name: string;
|
|
56
|
+
readonly external: boolean | undefined;
|
|
49
57
|
readonly packages: string[];
|
|
50
58
|
readonly useFoldersLayout: boolean | undefined;
|
|
51
59
|
} | U | U_1;
|
|
52
60
|
error(): string;
|
|
53
61
|
get(): import("./configDescriber").ValidationResult<{
|
|
54
62
|
readonly name: string;
|
|
63
|
+
readonly external: boolean | undefined;
|
|
55
64
|
readonly packages: string[];
|
|
56
65
|
readonly useFoldersLayout: boolean | undefined;
|
|
57
66
|
} | U | U_1>;
|
|
58
67
|
or<U_2>(x: U_2): {
|
|
59
68
|
box: import("./configDescriber").ValidationResult<{
|
|
60
69
|
readonly name: string;
|
|
70
|
+
readonly external: boolean | undefined;
|
|
61
71
|
readonly packages: string[];
|
|
62
72
|
readonly useFoldersLayout: boolean | undefined;
|
|
63
73
|
} | U | U_1 | U_2>;
|
|
64
74
|
success(): boolean;
|
|
65
75
|
unwrap(message?: string | undefined): {
|
|
66
76
|
readonly name: string;
|
|
77
|
+
readonly external: boolean | undefined;
|
|
67
78
|
readonly packages: string[];
|
|
68
79
|
readonly useFoldersLayout: boolean | undefined;
|
|
69
80
|
} | U | U_1 | U_2;
|
|
70
81
|
error(): string;
|
|
71
82
|
get(): import("./configDescriber").ValidationResult<{
|
|
72
83
|
readonly name: string;
|
|
84
|
+
readonly external: boolean | undefined;
|
|
73
85
|
readonly packages: string[];
|
|
74
86
|
readonly useFoldersLayout: boolean | undefined;
|
|
75
87
|
} | U | U_1 | U_2>;
|
|
76
88
|
or<U_3>(x: U_3): {
|
|
77
89
|
box: import("./configDescriber").ValidationResult<{
|
|
78
90
|
readonly name: string;
|
|
91
|
+
readonly external: boolean | undefined;
|
|
79
92
|
readonly packages: string[];
|
|
80
93
|
readonly useFoldersLayout: boolean | undefined;
|
|
81
94
|
} | U | U_1 | U_2 | U_3>;
|
|
82
95
|
success(): boolean;
|
|
83
96
|
unwrap(message?: string | undefined): {
|
|
84
97
|
readonly name: string;
|
|
98
|
+
readonly external: boolean | undefined;
|
|
85
99
|
readonly packages: string[];
|
|
86
100
|
readonly useFoldersLayout: boolean | undefined;
|
|
87
101
|
} | U | U_1 | U_2 | U_3;
|
|
88
102
|
error(): string;
|
|
89
103
|
get(): import("./configDescriber").ValidationResult<{
|
|
90
104
|
readonly name: string;
|
|
105
|
+
readonly external: boolean | undefined;
|
|
91
106
|
readonly packages: string[];
|
|
92
107
|
readonly useFoldersLayout: boolean | undefined;
|
|
93
108
|
} | U | U_1 | U_2 | U_3>;
|
|
94
109
|
or<U_4>(x: U_4): {
|
|
95
110
|
box: import("./configDescriber").ValidationResult<{
|
|
96
111
|
readonly name: string;
|
|
112
|
+
readonly external: boolean | undefined;
|
|
97
113
|
readonly packages: string[];
|
|
98
114
|
readonly useFoldersLayout: boolean | undefined;
|
|
99
115
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
100
116
|
success(): boolean;
|
|
101
117
|
unwrap(message?: string | undefined): {
|
|
102
118
|
readonly name: string;
|
|
119
|
+
readonly external: boolean | undefined;
|
|
103
120
|
readonly packages: string[];
|
|
104
121
|
readonly useFoldersLayout: boolean | undefined;
|
|
105
122
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
106
123
|
error(): string;
|
|
107
124
|
get(): import("./configDescriber").ValidationResult<{
|
|
108
125
|
readonly name: string;
|
|
126
|
+
readonly external: boolean | undefined;
|
|
109
127
|
readonly packages: string[];
|
|
110
128
|
readonly useFoldersLayout: boolean | undefined;
|
|
111
129
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
112
130
|
or<U_5>(x: U_5): {
|
|
113
131
|
box: import("./configDescriber").ValidationResult<{
|
|
114
132
|
readonly name: string;
|
|
133
|
+
readonly external: boolean | undefined;
|
|
115
134
|
readonly packages: string[];
|
|
116
135
|
readonly useFoldersLayout: boolean | undefined;
|
|
117
136
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
118
137
|
success(): boolean;
|
|
119
138
|
unwrap(message?: string | undefined): {
|
|
120
139
|
readonly name: string;
|
|
140
|
+
readonly external: boolean | undefined;
|
|
121
141
|
readonly packages: string[];
|
|
122
142
|
readonly useFoldersLayout: boolean | undefined;
|
|
123
143
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
124
144
|
error(): string;
|
|
125
145
|
get(): import("./configDescriber").ValidationResult<{
|
|
126
146
|
readonly name: string;
|
|
147
|
+
readonly external: boolean | undefined;
|
|
127
148
|
readonly packages: string[];
|
|
128
149
|
readonly useFoldersLayout: boolean | undefined;
|
|
129
150
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
130
151
|
or<U_6>(x: U_6): {
|
|
131
152
|
box: import("./configDescriber").ValidationResult<{
|
|
132
153
|
readonly name: string;
|
|
154
|
+
readonly external: boolean | undefined;
|
|
133
155
|
readonly packages: string[];
|
|
134
156
|
readonly useFoldersLayout: boolean | undefined;
|
|
135
157
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
136
158
|
success(): boolean;
|
|
137
159
|
unwrap(message?: string | undefined): {
|
|
138
160
|
readonly name: string;
|
|
161
|
+
readonly external: boolean | undefined;
|
|
139
162
|
readonly packages: string[];
|
|
140
163
|
readonly useFoldersLayout: boolean | undefined;
|
|
141
164
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
142
165
|
error(): string;
|
|
143
166
|
get(): import("./configDescriber").ValidationResult<{
|
|
144
167
|
readonly name: string;
|
|
168
|
+
readonly external: boolean | undefined;
|
|
145
169
|
readonly packages: string[];
|
|
146
170
|
readonly useFoldersLayout: boolean | undefined;
|
|
147
171
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
148
172
|
or<U_7>(x: U_7): {
|
|
149
173
|
box: import("./configDescriber").ValidationResult<{
|
|
150
174
|
readonly name: string;
|
|
175
|
+
readonly external: boolean | undefined;
|
|
151
176
|
readonly packages: string[];
|
|
152
177
|
readonly useFoldersLayout: boolean | undefined;
|
|
153
178
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
154
179
|
success(): boolean;
|
|
155
180
|
unwrap(message?: string | undefined): {
|
|
156
181
|
readonly name: string;
|
|
182
|
+
readonly external: boolean | undefined;
|
|
157
183
|
readonly packages: string[];
|
|
158
184
|
readonly useFoldersLayout: boolean | undefined;
|
|
159
185
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
160
186
|
error(): string;
|
|
161
187
|
get(): import("./configDescriber").ValidationResult<{
|
|
162
188
|
readonly name: string;
|
|
189
|
+
readonly external: boolean | undefined;
|
|
163
190
|
readonly packages: string[];
|
|
164
191
|
readonly useFoldersLayout: boolean | undefined;
|
|
165
192
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
166
193
|
or<U_8>(x: U_8): {
|
|
167
194
|
box: import("./configDescriber").ValidationResult<{
|
|
168
195
|
readonly name: string;
|
|
196
|
+
readonly external: boolean | undefined;
|
|
169
197
|
readonly packages: string[];
|
|
170
198
|
readonly useFoldersLayout: boolean | undefined;
|
|
171
199
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
172
200
|
success(): boolean;
|
|
173
201
|
unwrap(message?: string | undefined): {
|
|
174
202
|
readonly name: string;
|
|
203
|
+
readonly external: boolean | undefined;
|
|
175
204
|
readonly packages: string[];
|
|
176
205
|
readonly useFoldersLayout: boolean | undefined;
|
|
177
206
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
178
207
|
error(): string;
|
|
179
208
|
get(): import("./configDescriber").ValidationResult<{
|
|
180
209
|
readonly name: string;
|
|
210
|
+
readonly external: boolean | undefined;
|
|
181
211
|
readonly packages: string[];
|
|
182
212
|
readonly useFoldersLayout: boolean | undefined;
|
|
183
213
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
184
214
|
or<U_9>(x: U_9): {
|
|
185
215
|
box: import("./configDescriber").ValidationResult<{
|
|
186
216
|
readonly name: string;
|
|
217
|
+
readonly external: boolean | undefined;
|
|
187
218
|
readonly packages: string[];
|
|
188
219
|
readonly useFoldersLayout: boolean | undefined;
|
|
189
220
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
190
221
|
success(): boolean;
|
|
191
222
|
unwrap(message?: string | undefined): {
|
|
192
223
|
readonly name: string;
|
|
224
|
+
readonly external: boolean | undefined;
|
|
193
225
|
readonly packages: string[];
|
|
194
226
|
readonly useFoldersLayout: boolean | undefined;
|
|
195
227
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
196
228
|
error(): string;
|
|
197
229
|
get(): import("./configDescriber").ValidationResult<{
|
|
198
230
|
readonly name: string;
|
|
231
|
+
readonly external: boolean | undefined;
|
|
199
232
|
readonly packages: string[];
|
|
200
233
|
readonly useFoldersLayout: boolean | undefined;
|
|
201
234
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
@@ -218,198 +251,231 @@ export declare const ModuleConfigurationSchema: {
|
|
|
218
251
|
validate: (x: unknown) => {
|
|
219
252
|
box: import("./configDescriber").ValidationResult<{
|
|
220
253
|
readonly name: string;
|
|
254
|
+
readonly external: boolean | undefined;
|
|
221
255
|
readonly packages: string[];
|
|
222
256
|
readonly useFoldersLayout: boolean | undefined;
|
|
223
257
|
}>;
|
|
224
258
|
success(): boolean;
|
|
225
259
|
unwrap(message?: string | undefined): {
|
|
226
260
|
readonly name: string;
|
|
261
|
+
readonly external: boolean | undefined;
|
|
227
262
|
readonly packages: string[];
|
|
228
263
|
readonly useFoldersLayout: boolean | undefined;
|
|
229
264
|
};
|
|
230
265
|
error(): string;
|
|
231
266
|
get(): import("./configDescriber").ValidationResult<{
|
|
232
267
|
readonly name: string;
|
|
268
|
+
readonly external: boolean | undefined;
|
|
233
269
|
readonly packages: string[];
|
|
234
270
|
readonly useFoldersLayout: boolean | undefined;
|
|
235
271
|
}>;
|
|
236
272
|
or<U>(x: U): {
|
|
237
273
|
box: import("./configDescriber").ValidationResult<{
|
|
238
274
|
readonly name: string;
|
|
275
|
+
readonly external: boolean | undefined;
|
|
239
276
|
readonly packages: string[];
|
|
240
277
|
readonly useFoldersLayout: boolean | undefined;
|
|
241
278
|
} | U>;
|
|
242
279
|
success(): boolean;
|
|
243
280
|
unwrap(message?: string | undefined): {
|
|
244
281
|
readonly name: string;
|
|
282
|
+
readonly external: boolean | undefined;
|
|
245
283
|
readonly packages: string[];
|
|
246
284
|
readonly useFoldersLayout: boolean | undefined;
|
|
247
285
|
} | U;
|
|
248
286
|
error(): string;
|
|
249
287
|
get(): import("./configDescriber").ValidationResult<{
|
|
250
288
|
readonly name: string;
|
|
289
|
+
readonly external: boolean | undefined;
|
|
251
290
|
readonly packages: string[];
|
|
252
291
|
readonly useFoldersLayout: boolean | undefined;
|
|
253
292
|
} | U>;
|
|
254
293
|
or<U_1>(x: U_1): {
|
|
255
294
|
box: import("./configDescriber").ValidationResult<{
|
|
256
295
|
readonly name: string;
|
|
296
|
+
readonly external: boolean | undefined;
|
|
257
297
|
readonly packages: string[];
|
|
258
298
|
readonly useFoldersLayout: boolean | undefined;
|
|
259
299
|
} | U | U_1>;
|
|
260
300
|
success(): boolean;
|
|
261
301
|
unwrap(message?: string | undefined): {
|
|
262
302
|
readonly name: string;
|
|
303
|
+
readonly external: boolean | undefined;
|
|
263
304
|
readonly packages: string[];
|
|
264
305
|
readonly useFoldersLayout: boolean | undefined;
|
|
265
306
|
} | U | U_1;
|
|
266
307
|
error(): string;
|
|
267
308
|
get(): import("./configDescriber").ValidationResult<{
|
|
268
309
|
readonly name: string;
|
|
310
|
+
readonly external: boolean | undefined;
|
|
269
311
|
readonly packages: string[];
|
|
270
312
|
readonly useFoldersLayout: boolean | undefined;
|
|
271
313
|
} | U | U_1>;
|
|
272
314
|
or<U_2>(x: U_2): {
|
|
273
315
|
box: import("./configDescriber").ValidationResult<{
|
|
274
316
|
readonly name: string;
|
|
317
|
+
readonly external: boolean | undefined;
|
|
275
318
|
readonly packages: string[];
|
|
276
319
|
readonly useFoldersLayout: boolean | undefined;
|
|
277
320
|
} | U | U_1 | U_2>;
|
|
278
321
|
success(): boolean;
|
|
279
322
|
unwrap(message?: string | undefined): {
|
|
280
323
|
readonly name: string;
|
|
324
|
+
readonly external: boolean | undefined;
|
|
281
325
|
readonly packages: string[];
|
|
282
326
|
readonly useFoldersLayout: boolean | undefined;
|
|
283
327
|
} | U | U_1 | U_2;
|
|
284
328
|
error(): string;
|
|
285
329
|
get(): import("./configDescriber").ValidationResult<{
|
|
286
330
|
readonly name: string;
|
|
331
|
+
readonly external: boolean | undefined;
|
|
287
332
|
readonly packages: string[];
|
|
288
333
|
readonly useFoldersLayout: boolean | undefined;
|
|
289
334
|
} | U | U_1 | U_2>;
|
|
290
335
|
or<U_3>(x: U_3): {
|
|
291
336
|
box: import("./configDescriber").ValidationResult<{
|
|
292
337
|
readonly name: string;
|
|
338
|
+
readonly external: boolean | undefined;
|
|
293
339
|
readonly packages: string[];
|
|
294
340
|
readonly useFoldersLayout: boolean | undefined;
|
|
295
341
|
} | U | U_1 | U_2 | U_3>;
|
|
296
342
|
success(): boolean;
|
|
297
343
|
unwrap(message?: string | undefined): {
|
|
298
344
|
readonly name: string;
|
|
345
|
+
readonly external: boolean | undefined;
|
|
299
346
|
readonly packages: string[];
|
|
300
347
|
readonly useFoldersLayout: boolean | undefined;
|
|
301
348
|
} | U | U_1 | U_2 | U_3;
|
|
302
349
|
error(): string;
|
|
303
350
|
get(): import("./configDescriber").ValidationResult<{
|
|
304
351
|
readonly name: string;
|
|
352
|
+
readonly external: boolean | undefined;
|
|
305
353
|
readonly packages: string[];
|
|
306
354
|
readonly useFoldersLayout: boolean | undefined;
|
|
307
355
|
} | U | U_1 | U_2 | U_3>;
|
|
308
356
|
or<U_4>(x: U_4): {
|
|
309
357
|
box: import("./configDescriber").ValidationResult<{
|
|
310
358
|
readonly name: string;
|
|
359
|
+
readonly external: boolean | undefined;
|
|
311
360
|
readonly packages: string[];
|
|
312
361
|
readonly useFoldersLayout: boolean | undefined;
|
|
313
362
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
314
363
|
success(): boolean;
|
|
315
364
|
unwrap(message?: string | undefined): {
|
|
316
365
|
readonly name: string;
|
|
366
|
+
readonly external: boolean | undefined;
|
|
317
367
|
readonly packages: string[];
|
|
318
368
|
readonly useFoldersLayout: boolean | undefined;
|
|
319
369
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
320
370
|
error(): string;
|
|
321
371
|
get(): import("./configDescriber").ValidationResult<{
|
|
322
372
|
readonly name: string;
|
|
373
|
+
readonly external: boolean | undefined;
|
|
323
374
|
readonly packages: string[];
|
|
324
375
|
readonly useFoldersLayout: boolean | undefined;
|
|
325
376
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
326
377
|
or<U_5>(x: U_5): {
|
|
327
378
|
box: import("./configDescriber").ValidationResult<{
|
|
328
379
|
readonly name: string;
|
|
380
|
+
readonly external: boolean | undefined;
|
|
329
381
|
readonly packages: string[];
|
|
330
382
|
readonly useFoldersLayout: boolean | undefined;
|
|
331
383
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
332
384
|
success(): boolean;
|
|
333
385
|
unwrap(message?: string | undefined): {
|
|
334
386
|
readonly name: string;
|
|
387
|
+
readonly external: boolean | undefined;
|
|
335
388
|
readonly packages: string[];
|
|
336
389
|
readonly useFoldersLayout: boolean | undefined;
|
|
337
390
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
338
391
|
error(): string;
|
|
339
392
|
get(): import("./configDescriber").ValidationResult<{
|
|
340
393
|
readonly name: string;
|
|
394
|
+
readonly external: boolean | undefined;
|
|
341
395
|
readonly packages: string[];
|
|
342
396
|
readonly useFoldersLayout: boolean | undefined;
|
|
343
397
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
344
398
|
or<U_6>(x: U_6): {
|
|
345
399
|
box: import("./configDescriber").ValidationResult<{
|
|
346
400
|
readonly name: string;
|
|
401
|
+
readonly external: boolean | undefined;
|
|
347
402
|
readonly packages: string[];
|
|
348
403
|
readonly useFoldersLayout: boolean | undefined;
|
|
349
404
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
350
405
|
success(): boolean;
|
|
351
406
|
unwrap(message?: string | undefined): {
|
|
352
407
|
readonly name: string;
|
|
408
|
+
readonly external: boolean | undefined;
|
|
353
409
|
readonly packages: string[];
|
|
354
410
|
readonly useFoldersLayout: boolean | undefined;
|
|
355
411
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
356
412
|
error(): string;
|
|
357
413
|
get(): import("./configDescriber").ValidationResult<{
|
|
358
414
|
readonly name: string;
|
|
415
|
+
readonly external: boolean | undefined;
|
|
359
416
|
readonly packages: string[];
|
|
360
417
|
readonly useFoldersLayout: boolean | undefined;
|
|
361
418
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
362
419
|
or<U_7>(x: U_7): {
|
|
363
420
|
box: import("./configDescriber").ValidationResult<{
|
|
364
421
|
readonly name: string;
|
|
422
|
+
readonly external: boolean | undefined;
|
|
365
423
|
readonly packages: string[];
|
|
366
424
|
readonly useFoldersLayout: boolean | undefined;
|
|
367
425
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
368
426
|
success(): boolean;
|
|
369
427
|
unwrap(message?: string | undefined): {
|
|
370
428
|
readonly name: string;
|
|
429
|
+
readonly external: boolean | undefined;
|
|
371
430
|
readonly packages: string[];
|
|
372
431
|
readonly useFoldersLayout: boolean | undefined;
|
|
373
432
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
374
433
|
error(): string;
|
|
375
434
|
get(): import("./configDescriber").ValidationResult<{
|
|
376
435
|
readonly name: string;
|
|
436
|
+
readonly external: boolean | undefined;
|
|
377
437
|
readonly packages: string[];
|
|
378
438
|
readonly useFoldersLayout: boolean | undefined;
|
|
379
439
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
380
440
|
or<U_8>(x: U_8): {
|
|
381
441
|
box: import("./configDescriber").ValidationResult<{
|
|
382
442
|
readonly name: string;
|
|
443
|
+
readonly external: boolean | undefined;
|
|
383
444
|
readonly packages: string[];
|
|
384
445
|
readonly useFoldersLayout: boolean | undefined;
|
|
385
446
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
386
447
|
success(): boolean;
|
|
387
448
|
unwrap(message?: string | undefined): {
|
|
388
449
|
readonly name: string;
|
|
450
|
+
readonly external: boolean | undefined;
|
|
389
451
|
readonly packages: string[];
|
|
390
452
|
readonly useFoldersLayout: boolean | undefined;
|
|
391
453
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
392
454
|
error(): string;
|
|
393
455
|
get(): import("./configDescriber").ValidationResult<{
|
|
394
456
|
readonly name: string;
|
|
457
|
+
readonly external: boolean | undefined;
|
|
395
458
|
readonly packages: string[];
|
|
396
459
|
readonly useFoldersLayout: boolean | undefined;
|
|
397
460
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
398
461
|
or<U_9>(x: U_9): {
|
|
399
462
|
box: import("./configDescriber").ValidationResult<{
|
|
400
463
|
readonly name: string;
|
|
464
|
+
readonly external: boolean | undefined;
|
|
401
465
|
readonly packages: string[];
|
|
402
466
|
readonly useFoldersLayout: boolean | undefined;
|
|
403
467
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
404
468
|
success(): boolean;
|
|
405
469
|
unwrap(message?: string | undefined): {
|
|
406
470
|
readonly name: string;
|
|
471
|
+
readonly external: boolean | undefined;
|
|
407
472
|
readonly packages: string[];
|
|
408
473
|
readonly useFoldersLayout: boolean | undefined;
|
|
409
474
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
410
475
|
error(): string;
|
|
411
476
|
get(): import("./configDescriber").ValidationResult<{
|
|
412
477
|
readonly name: string;
|
|
478
|
+
readonly external: boolean | undefined;
|
|
413
479
|
readonly packages: string[];
|
|
414
480
|
readonly useFoldersLayout: boolean | undefined;
|
|
415
481
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
@@ -434,134 +500,167 @@ export declare const HookMethodSchema: {
|
|
|
434
500
|
validate: (x: unknown) => {
|
|
435
501
|
box: import("./configDescriber").ValidationResult<{
|
|
436
502
|
readonly hookName: string;
|
|
503
|
+
readonly replaceImplementation: boolean;
|
|
437
504
|
}>;
|
|
438
505
|
success(): boolean;
|
|
439
506
|
unwrap(message?: string | undefined): {
|
|
440
507
|
readonly hookName: string;
|
|
508
|
+
readonly replaceImplementation: boolean;
|
|
441
509
|
};
|
|
442
510
|
error(): string;
|
|
443
511
|
get(): import("./configDescriber").ValidationResult<{
|
|
444
512
|
readonly hookName: string;
|
|
513
|
+
readonly replaceImplementation: boolean;
|
|
445
514
|
}>;
|
|
446
515
|
or<U>(x: U): {
|
|
447
516
|
box: import("./configDescriber").ValidationResult<{
|
|
448
517
|
readonly hookName: string;
|
|
518
|
+
readonly replaceImplementation: boolean;
|
|
449
519
|
} | U>;
|
|
450
520
|
success(): boolean;
|
|
451
521
|
unwrap(message?: string | undefined): {
|
|
452
522
|
readonly hookName: string;
|
|
523
|
+
readonly replaceImplementation: boolean;
|
|
453
524
|
} | U;
|
|
454
525
|
error(): string;
|
|
455
526
|
get(): import("./configDescriber").ValidationResult<{
|
|
456
527
|
readonly hookName: string;
|
|
528
|
+
readonly replaceImplementation: boolean;
|
|
457
529
|
} | U>;
|
|
458
530
|
or<U_1>(x: U_1): {
|
|
459
531
|
box: import("./configDescriber").ValidationResult<{
|
|
460
532
|
readonly hookName: string;
|
|
533
|
+
readonly replaceImplementation: boolean;
|
|
461
534
|
} | U | U_1>;
|
|
462
535
|
success(): boolean;
|
|
463
536
|
unwrap(message?: string | undefined): {
|
|
464
537
|
readonly hookName: string;
|
|
538
|
+
readonly replaceImplementation: boolean;
|
|
465
539
|
} | U | U_1;
|
|
466
540
|
error(): string;
|
|
467
541
|
get(): import("./configDescriber").ValidationResult<{
|
|
468
542
|
readonly hookName: string;
|
|
543
|
+
readonly replaceImplementation: boolean;
|
|
469
544
|
} | U | U_1>;
|
|
470
545
|
or<U_2>(x: U_2): {
|
|
471
546
|
box: import("./configDescriber").ValidationResult<{
|
|
472
547
|
readonly hookName: string;
|
|
548
|
+
readonly replaceImplementation: boolean;
|
|
473
549
|
} | U | U_1 | U_2>;
|
|
474
550
|
success(): boolean;
|
|
475
551
|
unwrap(message?: string | undefined): {
|
|
476
552
|
readonly hookName: string;
|
|
553
|
+
readonly replaceImplementation: boolean;
|
|
477
554
|
} | U | U_1 | U_2;
|
|
478
555
|
error(): string;
|
|
479
556
|
get(): import("./configDescriber").ValidationResult<{
|
|
480
557
|
readonly hookName: string;
|
|
558
|
+
readonly replaceImplementation: boolean;
|
|
481
559
|
} | U | U_1 | U_2>;
|
|
482
560
|
or<U_3>(x: U_3): {
|
|
483
561
|
box: import("./configDescriber").ValidationResult<{
|
|
484
562
|
readonly hookName: string;
|
|
563
|
+
readonly replaceImplementation: boolean;
|
|
485
564
|
} | U | U_1 | U_2 | U_3>;
|
|
486
565
|
success(): boolean;
|
|
487
566
|
unwrap(message?: string | undefined): {
|
|
488
567
|
readonly hookName: string;
|
|
568
|
+
readonly replaceImplementation: boolean;
|
|
489
569
|
} | U | U_1 | U_2 | U_3;
|
|
490
570
|
error(): string;
|
|
491
571
|
get(): import("./configDescriber").ValidationResult<{
|
|
492
572
|
readonly hookName: string;
|
|
573
|
+
readonly replaceImplementation: boolean;
|
|
493
574
|
} | U | U_1 | U_2 | U_3>;
|
|
494
575
|
or<U_4>(x: U_4): {
|
|
495
576
|
box: import("./configDescriber").ValidationResult<{
|
|
496
577
|
readonly hookName: string;
|
|
578
|
+
readonly replaceImplementation: boolean;
|
|
497
579
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
498
580
|
success(): boolean;
|
|
499
581
|
unwrap(message?: string | undefined): {
|
|
500
582
|
readonly hookName: string;
|
|
583
|
+
readonly replaceImplementation: boolean;
|
|
501
584
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
502
585
|
error(): string;
|
|
503
586
|
get(): import("./configDescriber").ValidationResult<{
|
|
504
587
|
readonly hookName: string;
|
|
588
|
+
readonly replaceImplementation: boolean;
|
|
505
589
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
506
590
|
or<U_5>(x: U_5): {
|
|
507
591
|
box: import("./configDescriber").ValidationResult<{
|
|
508
592
|
readonly hookName: string;
|
|
593
|
+
readonly replaceImplementation: boolean;
|
|
509
594
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
510
595
|
success(): boolean;
|
|
511
596
|
unwrap(message?: string | undefined): {
|
|
512
597
|
readonly hookName: string;
|
|
598
|
+
readonly replaceImplementation: boolean;
|
|
513
599
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
514
600
|
error(): string;
|
|
515
601
|
get(): import("./configDescriber").ValidationResult<{
|
|
516
602
|
readonly hookName: string;
|
|
603
|
+
readonly replaceImplementation: boolean;
|
|
517
604
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
518
605
|
or<U_6>(x: U_6): {
|
|
519
606
|
box: import("./configDescriber").ValidationResult<{
|
|
520
607
|
readonly hookName: string;
|
|
608
|
+
readonly replaceImplementation: boolean;
|
|
521
609
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
522
610
|
success(): boolean;
|
|
523
611
|
unwrap(message?: string | undefined): {
|
|
524
612
|
readonly hookName: string;
|
|
613
|
+
readonly replaceImplementation: boolean;
|
|
525
614
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
526
615
|
error(): string;
|
|
527
616
|
get(): import("./configDescriber").ValidationResult<{
|
|
528
617
|
readonly hookName: string;
|
|
618
|
+
readonly replaceImplementation: boolean;
|
|
529
619
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
530
620
|
or<U_7>(x: U_7): {
|
|
531
621
|
box: import("./configDescriber").ValidationResult<{
|
|
532
622
|
readonly hookName: string;
|
|
623
|
+
readonly replaceImplementation: boolean;
|
|
533
624
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
534
625
|
success(): boolean;
|
|
535
626
|
unwrap(message?: string | undefined): {
|
|
536
627
|
readonly hookName: string;
|
|
628
|
+
readonly replaceImplementation: boolean;
|
|
537
629
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
538
630
|
error(): string;
|
|
539
631
|
get(): import("./configDescriber").ValidationResult<{
|
|
540
632
|
readonly hookName: string;
|
|
633
|
+
readonly replaceImplementation: boolean;
|
|
541
634
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
542
635
|
or<U_8>(x: U_8): {
|
|
543
636
|
box: import("./configDescriber").ValidationResult<{
|
|
544
637
|
readonly hookName: string;
|
|
638
|
+
readonly replaceImplementation: boolean;
|
|
545
639
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
546
640
|
success(): boolean;
|
|
547
641
|
unwrap(message?: string | undefined): {
|
|
548
642
|
readonly hookName: string;
|
|
643
|
+
readonly replaceImplementation: boolean;
|
|
549
644
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
550
645
|
error(): string;
|
|
551
646
|
get(): import("./configDescriber").ValidationResult<{
|
|
552
647
|
readonly hookName: string;
|
|
648
|
+
readonly replaceImplementation: boolean;
|
|
553
649
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
554
650
|
or<U_9>(x: U_9): {
|
|
555
651
|
box: import("./configDescriber").ValidationResult<{
|
|
556
652
|
readonly hookName: string;
|
|
653
|
+
readonly replaceImplementation: boolean;
|
|
557
654
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
558
655
|
success(): boolean;
|
|
559
656
|
unwrap(message?: string | undefined): {
|
|
560
657
|
readonly hookName: string;
|
|
658
|
+
readonly replaceImplementation: boolean;
|
|
561
659
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
562
660
|
error(): string;
|
|
563
661
|
get(): import("./configDescriber").ValidationResult<{
|
|
564
662
|
readonly hookName: string;
|
|
663
|
+
readonly replaceImplementation: boolean;
|
|
565
664
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
566
665
|
or<U_10>(x: U_10): any;
|
|
567
666
|
};
|
|
@@ -582,134 +681,167 @@ export declare const HookMethodSchema: {
|
|
|
582
681
|
validate: (x: unknown) => {
|
|
583
682
|
box: import("./configDescriber").ValidationResult<{
|
|
584
683
|
readonly hookName: string;
|
|
684
|
+
readonly replaceImplementation: boolean;
|
|
585
685
|
}>;
|
|
586
686
|
success(): boolean;
|
|
587
687
|
unwrap(message?: string | undefined): {
|
|
588
688
|
readonly hookName: string;
|
|
689
|
+
readonly replaceImplementation: boolean;
|
|
589
690
|
};
|
|
590
691
|
error(): string;
|
|
591
692
|
get(): import("./configDescriber").ValidationResult<{
|
|
592
693
|
readonly hookName: string;
|
|
694
|
+
readonly replaceImplementation: boolean;
|
|
593
695
|
}>;
|
|
594
696
|
or<U>(x: U): {
|
|
595
697
|
box: import("./configDescriber").ValidationResult<{
|
|
596
698
|
readonly hookName: string;
|
|
699
|
+
readonly replaceImplementation: boolean;
|
|
597
700
|
} | U>;
|
|
598
701
|
success(): boolean;
|
|
599
702
|
unwrap(message?: string | undefined): {
|
|
600
703
|
readonly hookName: string;
|
|
704
|
+
readonly replaceImplementation: boolean;
|
|
601
705
|
} | U;
|
|
602
706
|
error(): string;
|
|
603
707
|
get(): import("./configDescriber").ValidationResult<{
|
|
604
708
|
readonly hookName: string;
|
|
709
|
+
readonly replaceImplementation: boolean;
|
|
605
710
|
} | U>;
|
|
606
711
|
or<U_1>(x: U_1): {
|
|
607
712
|
box: import("./configDescriber").ValidationResult<{
|
|
608
713
|
readonly hookName: string;
|
|
714
|
+
readonly replaceImplementation: boolean;
|
|
609
715
|
} | U | U_1>;
|
|
610
716
|
success(): boolean;
|
|
611
717
|
unwrap(message?: string | undefined): {
|
|
612
718
|
readonly hookName: string;
|
|
719
|
+
readonly replaceImplementation: boolean;
|
|
613
720
|
} | U | U_1;
|
|
614
721
|
error(): string;
|
|
615
722
|
get(): import("./configDescriber").ValidationResult<{
|
|
616
723
|
readonly hookName: string;
|
|
724
|
+
readonly replaceImplementation: boolean;
|
|
617
725
|
} | U | U_1>;
|
|
618
726
|
or<U_2>(x: U_2): {
|
|
619
727
|
box: import("./configDescriber").ValidationResult<{
|
|
620
728
|
readonly hookName: string;
|
|
729
|
+
readonly replaceImplementation: boolean;
|
|
621
730
|
} | U | U_1 | U_2>;
|
|
622
731
|
success(): boolean;
|
|
623
732
|
unwrap(message?: string | undefined): {
|
|
624
733
|
readonly hookName: string;
|
|
734
|
+
readonly replaceImplementation: boolean;
|
|
625
735
|
} | U | U_1 | U_2;
|
|
626
736
|
error(): string;
|
|
627
737
|
get(): import("./configDescriber").ValidationResult<{
|
|
628
738
|
readonly hookName: string;
|
|
739
|
+
readonly replaceImplementation: boolean;
|
|
629
740
|
} | U | U_1 | U_2>;
|
|
630
741
|
or<U_3>(x: U_3): {
|
|
631
742
|
box: import("./configDescriber").ValidationResult<{
|
|
632
743
|
readonly hookName: string;
|
|
744
|
+
readonly replaceImplementation: boolean;
|
|
633
745
|
} | U | U_1 | U_2 | U_3>;
|
|
634
746
|
success(): boolean;
|
|
635
747
|
unwrap(message?: string | undefined): {
|
|
636
748
|
readonly hookName: string;
|
|
749
|
+
readonly replaceImplementation: boolean;
|
|
637
750
|
} | U | U_1 | U_2 | U_3;
|
|
638
751
|
error(): string;
|
|
639
752
|
get(): import("./configDescriber").ValidationResult<{
|
|
640
753
|
readonly hookName: string;
|
|
754
|
+
readonly replaceImplementation: boolean;
|
|
641
755
|
} | U | U_1 | U_2 | U_3>;
|
|
642
756
|
or<U_4>(x: U_4): {
|
|
643
757
|
box: import("./configDescriber").ValidationResult<{
|
|
644
758
|
readonly hookName: string;
|
|
759
|
+
readonly replaceImplementation: boolean;
|
|
645
760
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
646
761
|
success(): boolean;
|
|
647
762
|
unwrap(message?: string | undefined): {
|
|
648
763
|
readonly hookName: string;
|
|
764
|
+
readonly replaceImplementation: boolean;
|
|
649
765
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
650
766
|
error(): string;
|
|
651
767
|
get(): import("./configDescriber").ValidationResult<{
|
|
652
768
|
readonly hookName: string;
|
|
769
|
+
readonly replaceImplementation: boolean;
|
|
653
770
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
654
771
|
or<U_5>(x: U_5): {
|
|
655
772
|
box: import("./configDescriber").ValidationResult<{
|
|
656
773
|
readonly hookName: string;
|
|
774
|
+
readonly replaceImplementation: boolean;
|
|
657
775
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
658
776
|
success(): boolean;
|
|
659
777
|
unwrap(message?: string | undefined): {
|
|
660
778
|
readonly hookName: string;
|
|
779
|
+
readonly replaceImplementation: boolean;
|
|
661
780
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
662
781
|
error(): string;
|
|
663
782
|
get(): import("./configDescriber").ValidationResult<{
|
|
664
783
|
readonly hookName: string;
|
|
784
|
+
readonly replaceImplementation: boolean;
|
|
665
785
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
666
786
|
or<U_6>(x: U_6): {
|
|
667
787
|
box: import("./configDescriber").ValidationResult<{
|
|
668
788
|
readonly hookName: string;
|
|
789
|
+
readonly replaceImplementation: boolean;
|
|
669
790
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
670
791
|
success(): boolean;
|
|
671
792
|
unwrap(message?: string | undefined): {
|
|
672
793
|
readonly hookName: string;
|
|
794
|
+
readonly replaceImplementation: boolean;
|
|
673
795
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
674
796
|
error(): string;
|
|
675
797
|
get(): import("./configDescriber").ValidationResult<{
|
|
676
798
|
readonly hookName: string;
|
|
799
|
+
readonly replaceImplementation: boolean;
|
|
677
800
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
678
801
|
or<U_7>(x: U_7): {
|
|
679
802
|
box: import("./configDescriber").ValidationResult<{
|
|
680
803
|
readonly hookName: string;
|
|
804
|
+
readonly replaceImplementation: boolean;
|
|
681
805
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
682
806
|
success(): boolean;
|
|
683
807
|
unwrap(message?: string | undefined): {
|
|
684
808
|
readonly hookName: string;
|
|
809
|
+
readonly replaceImplementation: boolean;
|
|
685
810
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
686
811
|
error(): string;
|
|
687
812
|
get(): import("./configDescriber").ValidationResult<{
|
|
688
813
|
readonly hookName: string;
|
|
814
|
+
readonly replaceImplementation: boolean;
|
|
689
815
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
690
816
|
or<U_8>(x: U_8): {
|
|
691
817
|
box: import("./configDescriber").ValidationResult<{
|
|
692
818
|
readonly hookName: string;
|
|
819
|
+
readonly replaceImplementation: boolean;
|
|
693
820
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
694
821
|
success(): boolean;
|
|
695
822
|
unwrap(message?: string | undefined): {
|
|
696
823
|
readonly hookName: string;
|
|
824
|
+
readonly replaceImplementation: boolean;
|
|
697
825
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
698
826
|
error(): string;
|
|
699
827
|
get(): import("./configDescriber").ValidationResult<{
|
|
700
828
|
readonly hookName: string;
|
|
829
|
+
readonly replaceImplementation: boolean;
|
|
701
830
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
702
831
|
or<U_9>(x: U_9): {
|
|
703
832
|
box: import("./configDescriber").ValidationResult<{
|
|
704
833
|
readonly hookName: string;
|
|
834
|
+
readonly replaceImplementation: boolean;
|
|
705
835
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
706
836
|
success(): boolean;
|
|
707
837
|
unwrap(message?: string | undefined): {
|
|
708
838
|
readonly hookName: string;
|
|
839
|
+
readonly replaceImplementation: boolean;
|
|
709
840
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
710
841
|
error(): string;
|
|
711
842
|
get(): import("./configDescriber").ValidationResult<{
|
|
712
843
|
readonly hookName: string;
|
|
844
|
+
readonly replaceImplementation: boolean;
|
|
713
845
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
714
846
|
or<U_10>(x: U_10): any;
|
|
715
847
|
};
|
|
@@ -739,6 +871,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
739
871
|
readonly standaloneComponents: string[];
|
|
740
872
|
readonly parameterized: string[];
|
|
741
873
|
readonly ignoreMaterialized: string[];
|
|
874
|
+
readonly ignoreGenerics: string[];
|
|
742
875
|
readonly builderClasses: string[];
|
|
743
876
|
readonly forceMaterialized: string[];
|
|
744
877
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -746,15 +879,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
746
879
|
readonly forceContext: string[];
|
|
747
880
|
readonly hooks: Map<string, Map<string, {
|
|
748
881
|
readonly hookName: string;
|
|
882
|
+
readonly replaceImplementation: boolean;
|
|
749
883
|
}>>;
|
|
750
|
-
readonly externalTypes: Map<string, string>;
|
|
751
|
-
readonly externalPackages: string[];
|
|
752
884
|
readonly moduleName: string;
|
|
753
885
|
readonly modules: Map<string, {
|
|
754
886
|
readonly name: string;
|
|
887
|
+
readonly external: boolean | undefined;
|
|
755
888
|
readonly packages: string[];
|
|
756
889
|
readonly useFoldersLayout: boolean | undefined;
|
|
757
890
|
}>;
|
|
891
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
758
892
|
readonly globalPackages: string[];
|
|
759
893
|
}>;
|
|
760
894
|
success(): boolean;
|
|
@@ -766,6 +900,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
766
900
|
readonly standaloneComponents: string[];
|
|
767
901
|
readonly parameterized: string[];
|
|
768
902
|
readonly ignoreMaterialized: string[];
|
|
903
|
+
readonly ignoreGenerics: string[];
|
|
769
904
|
readonly builderClasses: string[];
|
|
770
905
|
readonly forceMaterialized: string[];
|
|
771
906
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -773,15 +908,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
773
908
|
readonly forceContext: string[];
|
|
774
909
|
readonly hooks: Map<string, Map<string, {
|
|
775
910
|
readonly hookName: string;
|
|
911
|
+
readonly replaceImplementation: boolean;
|
|
776
912
|
}>>;
|
|
777
|
-
readonly externalTypes: Map<string, string>;
|
|
778
|
-
readonly externalPackages: string[];
|
|
779
913
|
readonly moduleName: string;
|
|
780
914
|
readonly modules: Map<string, {
|
|
781
915
|
readonly name: string;
|
|
916
|
+
readonly external: boolean | undefined;
|
|
782
917
|
readonly packages: string[];
|
|
783
918
|
readonly useFoldersLayout: boolean | undefined;
|
|
784
919
|
}>;
|
|
920
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
785
921
|
readonly globalPackages: string[];
|
|
786
922
|
};
|
|
787
923
|
error(): string;
|
|
@@ -793,6 +929,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
793
929
|
readonly standaloneComponents: string[];
|
|
794
930
|
readonly parameterized: string[];
|
|
795
931
|
readonly ignoreMaterialized: string[];
|
|
932
|
+
readonly ignoreGenerics: string[];
|
|
796
933
|
readonly builderClasses: string[];
|
|
797
934
|
readonly forceMaterialized: string[];
|
|
798
935
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -800,15 +937,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
800
937
|
readonly forceContext: string[];
|
|
801
938
|
readonly hooks: Map<string, Map<string, {
|
|
802
939
|
readonly hookName: string;
|
|
940
|
+
readonly replaceImplementation: boolean;
|
|
803
941
|
}>>;
|
|
804
|
-
readonly externalTypes: Map<string, string>;
|
|
805
|
-
readonly externalPackages: string[];
|
|
806
942
|
readonly moduleName: string;
|
|
807
943
|
readonly modules: Map<string, {
|
|
808
944
|
readonly name: string;
|
|
945
|
+
readonly external: boolean | undefined;
|
|
809
946
|
readonly packages: string[];
|
|
810
947
|
readonly useFoldersLayout: boolean | undefined;
|
|
811
948
|
}>;
|
|
949
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
812
950
|
readonly globalPackages: string[];
|
|
813
951
|
}>;
|
|
814
952
|
or<U>(x: U): {
|
|
@@ -820,6 +958,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
820
958
|
readonly standaloneComponents: string[];
|
|
821
959
|
readonly parameterized: string[];
|
|
822
960
|
readonly ignoreMaterialized: string[];
|
|
961
|
+
readonly ignoreGenerics: string[];
|
|
823
962
|
readonly builderClasses: string[];
|
|
824
963
|
readonly forceMaterialized: string[];
|
|
825
964
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -827,15 +966,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
827
966
|
readonly forceContext: string[];
|
|
828
967
|
readonly hooks: Map<string, Map<string, {
|
|
829
968
|
readonly hookName: string;
|
|
969
|
+
readonly replaceImplementation: boolean;
|
|
830
970
|
}>>;
|
|
831
|
-
readonly externalTypes: Map<string, string>;
|
|
832
|
-
readonly externalPackages: string[];
|
|
833
971
|
readonly moduleName: string;
|
|
834
972
|
readonly modules: Map<string, {
|
|
835
973
|
readonly name: string;
|
|
974
|
+
readonly external: boolean | undefined;
|
|
836
975
|
readonly packages: string[];
|
|
837
976
|
readonly useFoldersLayout: boolean | undefined;
|
|
838
977
|
}>;
|
|
978
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
839
979
|
readonly globalPackages: string[];
|
|
840
980
|
} | U>;
|
|
841
981
|
success(): boolean;
|
|
@@ -847,6 +987,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
847
987
|
readonly standaloneComponents: string[];
|
|
848
988
|
readonly parameterized: string[];
|
|
849
989
|
readonly ignoreMaterialized: string[];
|
|
990
|
+
readonly ignoreGenerics: string[];
|
|
850
991
|
readonly builderClasses: string[];
|
|
851
992
|
readonly forceMaterialized: string[];
|
|
852
993
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -854,15 +995,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
854
995
|
readonly forceContext: string[];
|
|
855
996
|
readonly hooks: Map<string, Map<string, {
|
|
856
997
|
readonly hookName: string;
|
|
998
|
+
readonly replaceImplementation: boolean;
|
|
857
999
|
}>>;
|
|
858
|
-
readonly externalTypes: Map<string, string>;
|
|
859
|
-
readonly externalPackages: string[];
|
|
860
1000
|
readonly moduleName: string;
|
|
861
1001
|
readonly modules: Map<string, {
|
|
862
1002
|
readonly name: string;
|
|
1003
|
+
readonly external: boolean | undefined;
|
|
863
1004
|
readonly packages: string[];
|
|
864
1005
|
readonly useFoldersLayout: boolean | undefined;
|
|
865
1006
|
}>;
|
|
1007
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
866
1008
|
readonly globalPackages: string[];
|
|
867
1009
|
} | U;
|
|
868
1010
|
error(): string;
|
|
@@ -874,6 +1016,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
874
1016
|
readonly standaloneComponents: string[];
|
|
875
1017
|
readonly parameterized: string[];
|
|
876
1018
|
readonly ignoreMaterialized: string[];
|
|
1019
|
+
readonly ignoreGenerics: string[];
|
|
877
1020
|
readonly builderClasses: string[];
|
|
878
1021
|
readonly forceMaterialized: string[];
|
|
879
1022
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -881,15 +1024,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
881
1024
|
readonly forceContext: string[];
|
|
882
1025
|
readonly hooks: Map<string, Map<string, {
|
|
883
1026
|
readonly hookName: string;
|
|
1027
|
+
readonly replaceImplementation: boolean;
|
|
884
1028
|
}>>;
|
|
885
|
-
readonly externalTypes: Map<string, string>;
|
|
886
|
-
readonly externalPackages: string[];
|
|
887
1029
|
readonly moduleName: string;
|
|
888
1030
|
readonly modules: Map<string, {
|
|
889
1031
|
readonly name: string;
|
|
1032
|
+
readonly external: boolean | undefined;
|
|
890
1033
|
readonly packages: string[];
|
|
891
1034
|
readonly useFoldersLayout: boolean | undefined;
|
|
892
1035
|
}>;
|
|
1036
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
893
1037
|
readonly globalPackages: string[];
|
|
894
1038
|
} | U>;
|
|
895
1039
|
or<U_1>(x: U_1): {
|
|
@@ -901,6 +1045,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
901
1045
|
readonly standaloneComponents: string[];
|
|
902
1046
|
readonly parameterized: string[];
|
|
903
1047
|
readonly ignoreMaterialized: string[];
|
|
1048
|
+
readonly ignoreGenerics: string[];
|
|
904
1049
|
readonly builderClasses: string[];
|
|
905
1050
|
readonly forceMaterialized: string[];
|
|
906
1051
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -908,15 +1053,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
908
1053
|
readonly forceContext: string[];
|
|
909
1054
|
readonly hooks: Map<string, Map<string, {
|
|
910
1055
|
readonly hookName: string;
|
|
1056
|
+
readonly replaceImplementation: boolean;
|
|
911
1057
|
}>>;
|
|
912
|
-
readonly externalTypes: Map<string, string>;
|
|
913
|
-
readonly externalPackages: string[];
|
|
914
1058
|
readonly moduleName: string;
|
|
915
1059
|
readonly modules: Map<string, {
|
|
916
1060
|
readonly name: string;
|
|
1061
|
+
readonly external: boolean | undefined;
|
|
917
1062
|
readonly packages: string[];
|
|
918
1063
|
readonly useFoldersLayout: boolean | undefined;
|
|
919
1064
|
}>;
|
|
1065
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
920
1066
|
readonly globalPackages: string[];
|
|
921
1067
|
} | U | U_1>;
|
|
922
1068
|
success(): boolean;
|
|
@@ -928,6 +1074,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
928
1074
|
readonly standaloneComponents: string[];
|
|
929
1075
|
readonly parameterized: string[];
|
|
930
1076
|
readonly ignoreMaterialized: string[];
|
|
1077
|
+
readonly ignoreGenerics: string[];
|
|
931
1078
|
readonly builderClasses: string[];
|
|
932
1079
|
readonly forceMaterialized: string[];
|
|
933
1080
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -935,15 +1082,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
935
1082
|
readonly forceContext: string[];
|
|
936
1083
|
readonly hooks: Map<string, Map<string, {
|
|
937
1084
|
readonly hookName: string;
|
|
1085
|
+
readonly replaceImplementation: boolean;
|
|
938
1086
|
}>>;
|
|
939
|
-
readonly externalTypes: Map<string, string>;
|
|
940
|
-
readonly externalPackages: string[];
|
|
941
1087
|
readonly moduleName: string;
|
|
942
1088
|
readonly modules: Map<string, {
|
|
943
1089
|
readonly name: string;
|
|
1090
|
+
readonly external: boolean | undefined;
|
|
944
1091
|
readonly packages: string[];
|
|
945
1092
|
readonly useFoldersLayout: boolean | undefined;
|
|
946
1093
|
}>;
|
|
1094
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
947
1095
|
readonly globalPackages: string[];
|
|
948
1096
|
} | U | U_1;
|
|
949
1097
|
error(): string;
|
|
@@ -955,6 +1103,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
955
1103
|
readonly standaloneComponents: string[];
|
|
956
1104
|
readonly parameterized: string[];
|
|
957
1105
|
readonly ignoreMaterialized: string[];
|
|
1106
|
+
readonly ignoreGenerics: string[];
|
|
958
1107
|
readonly builderClasses: string[];
|
|
959
1108
|
readonly forceMaterialized: string[];
|
|
960
1109
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -962,15 +1111,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
962
1111
|
readonly forceContext: string[];
|
|
963
1112
|
readonly hooks: Map<string, Map<string, {
|
|
964
1113
|
readonly hookName: string;
|
|
1114
|
+
readonly replaceImplementation: boolean;
|
|
965
1115
|
}>>;
|
|
966
|
-
readonly externalTypes: Map<string, string>;
|
|
967
|
-
readonly externalPackages: string[];
|
|
968
1116
|
readonly moduleName: string;
|
|
969
1117
|
readonly modules: Map<string, {
|
|
970
1118
|
readonly name: string;
|
|
1119
|
+
readonly external: boolean | undefined;
|
|
971
1120
|
readonly packages: string[];
|
|
972
1121
|
readonly useFoldersLayout: boolean | undefined;
|
|
973
1122
|
}>;
|
|
1123
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
974
1124
|
readonly globalPackages: string[];
|
|
975
1125
|
} | U | U_1>;
|
|
976
1126
|
or<U_2>(x: U_2): {
|
|
@@ -982,6 +1132,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
982
1132
|
readonly standaloneComponents: string[];
|
|
983
1133
|
readonly parameterized: string[];
|
|
984
1134
|
readonly ignoreMaterialized: string[];
|
|
1135
|
+
readonly ignoreGenerics: string[];
|
|
985
1136
|
readonly builderClasses: string[];
|
|
986
1137
|
readonly forceMaterialized: string[];
|
|
987
1138
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -989,15 +1140,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
989
1140
|
readonly forceContext: string[];
|
|
990
1141
|
readonly hooks: Map<string, Map<string, {
|
|
991
1142
|
readonly hookName: string;
|
|
1143
|
+
readonly replaceImplementation: boolean;
|
|
992
1144
|
}>>;
|
|
993
|
-
readonly externalTypes: Map<string, string>;
|
|
994
|
-
readonly externalPackages: string[];
|
|
995
1145
|
readonly moduleName: string;
|
|
996
1146
|
readonly modules: Map<string, {
|
|
997
1147
|
readonly name: string;
|
|
1148
|
+
readonly external: boolean | undefined;
|
|
998
1149
|
readonly packages: string[];
|
|
999
1150
|
readonly useFoldersLayout: boolean | undefined;
|
|
1000
1151
|
}>;
|
|
1152
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1001
1153
|
readonly globalPackages: string[];
|
|
1002
1154
|
} | U | U_1 | U_2>;
|
|
1003
1155
|
success(): boolean;
|
|
@@ -1009,6 +1161,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1009
1161
|
readonly standaloneComponents: string[];
|
|
1010
1162
|
readonly parameterized: string[];
|
|
1011
1163
|
readonly ignoreMaterialized: string[];
|
|
1164
|
+
readonly ignoreGenerics: string[];
|
|
1012
1165
|
readonly builderClasses: string[];
|
|
1013
1166
|
readonly forceMaterialized: string[];
|
|
1014
1167
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1016,15 +1169,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1016
1169
|
readonly forceContext: string[];
|
|
1017
1170
|
readonly hooks: Map<string, Map<string, {
|
|
1018
1171
|
readonly hookName: string;
|
|
1172
|
+
readonly replaceImplementation: boolean;
|
|
1019
1173
|
}>>;
|
|
1020
|
-
readonly externalTypes: Map<string, string>;
|
|
1021
|
-
readonly externalPackages: string[];
|
|
1022
1174
|
readonly moduleName: string;
|
|
1023
1175
|
readonly modules: Map<string, {
|
|
1024
1176
|
readonly name: string;
|
|
1177
|
+
readonly external: boolean | undefined;
|
|
1025
1178
|
readonly packages: string[];
|
|
1026
1179
|
readonly useFoldersLayout: boolean | undefined;
|
|
1027
1180
|
}>;
|
|
1181
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1028
1182
|
readonly globalPackages: string[];
|
|
1029
1183
|
} | U | U_1 | U_2;
|
|
1030
1184
|
error(): string;
|
|
@@ -1036,6 +1190,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1036
1190
|
readonly standaloneComponents: string[];
|
|
1037
1191
|
readonly parameterized: string[];
|
|
1038
1192
|
readonly ignoreMaterialized: string[];
|
|
1193
|
+
readonly ignoreGenerics: string[];
|
|
1039
1194
|
readonly builderClasses: string[];
|
|
1040
1195
|
readonly forceMaterialized: string[];
|
|
1041
1196
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1043,15 +1198,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1043
1198
|
readonly forceContext: string[];
|
|
1044
1199
|
readonly hooks: Map<string, Map<string, {
|
|
1045
1200
|
readonly hookName: string;
|
|
1201
|
+
readonly replaceImplementation: boolean;
|
|
1046
1202
|
}>>;
|
|
1047
|
-
readonly externalTypes: Map<string, string>;
|
|
1048
|
-
readonly externalPackages: string[];
|
|
1049
1203
|
readonly moduleName: string;
|
|
1050
1204
|
readonly modules: Map<string, {
|
|
1051
1205
|
readonly name: string;
|
|
1206
|
+
readonly external: boolean | undefined;
|
|
1052
1207
|
readonly packages: string[];
|
|
1053
1208
|
readonly useFoldersLayout: boolean | undefined;
|
|
1054
1209
|
}>;
|
|
1210
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1055
1211
|
readonly globalPackages: string[];
|
|
1056
1212
|
} | U | U_1 | U_2>;
|
|
1057
1213
|
or<U_3>(x: U_3): {
|
|
@@ -1063,6 +1219,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1063
1219
|
readonly standaloneComponents: string[];
|
|
1064
1220
|
readonly parameterized: string[];
|
|
1065
1221
|
readonly ignoreMaterialized: string[];
|
|
1222
|
+
readonly ignoreGenerics: string[];
|
|
1066
1223
|
readonly builderClasses: string[];
|
|
1067
1224
|
readonly forceMaterialized: string[];
|
|
1068
1225
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1070,15 +1227,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1070
1227
|
readonly forceContext: string[];
|
|
1071
1228
|
readonly hooks: Map<string, Map<string, {
|
|
1072
1229
|
readonly hookName: string;
|
|
1230
|
+
readonly replaceImplementation: boolean;
|
|
1073
1231
|
}>>;
|
|
1074
|
-
readonly externalTypes: Map<string, string>;
|
|
1075
|
-
readonly externalPackages: string[];
|
|
1076
1232
|
readonly moduleName: string;
|
|
1077
1233
|
readonly modules: Map<string, {
|
|
1078
1234
|
readonly name: string;
|
|
1235
|
+
readonly external: boolean | undefined;
|
|
1079
1236
|
readonly packages: string[];
|
|
1080
1237
|
readonly useFoldersLayout: boolean | undefined;
|
|
1081
1238
|
}>;
|
|
1239
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1082
1240
|
readonly globalPackages: string[];
|
|
1083
1241
|
} | U | U_1 | U_2 | U_3>;
|
|
1084
1242
|
success(): boolean;
|
|
@@ -1090,6 +1248,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1090
1248
|
readonly standaloneComponents: string[];
|
|
1091
1249
|
readonly parameterized: string[];
|
|
1092
1250
|
readonly ignoreMaterialized: string[];
|
|
1251
|
+
readonly ignoreGenerics: string[];
|
|
1093
1252
|
readonly builderClasses: string[];
|
|
1094
1253
|
readonly forceMaterialized: string[];
|
|
1095
1254
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1097,15 +1256,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1097
1256
|
readonly forceContext: string[];
|
|
1098
1257
|
readonly hooks: Map<string, Map<string, {
|
|
1099
1258
|
readonly hookName: string;
|
|
1259
|
+
readonly replaceImplementation: boolean;
|
|
1100
1260
|
}>>;
|
|
1101
|
-
readonly externalTypes: Map<string, string>;
|
|
1102
|
-
readonly externalPackages: string[];
|
|
1103
1261
|
readonly moduleName: string;
|
|
1104
1262
|
readonly modules: Map<string, {
|
|
1105
1263
|
readonly name: string;
|
|
1264
|
+
readonly external: boolean | undefined;
|
|
1106
1265
|
readonly packages: string[];
|
|
1107
1266
|
readonly useFoldersLayout: boolean | undefined;
|
|
1108
1267
|
}>;
|
|
1268
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1109
1269
|
readonly globalPackages: string[];
|
|
1110
1270
|
} | U | U_1 | U_2 | U_3;
|
|
1111
1271
|
error(): string;
|
|
@@ -1117,6 +1277,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1117
1277
|
readonly standaloneComponents: string[];
|
|
1118
1278
|
readonly parameterized: string[];
|
|
1119
1279
|
readonly ignoreMaterialized: string[];
|
|
1280
|
+
readonly ignoreGenerics: string[];
|
|
1120
1281
|
readonly builderClasses: string[];
|
|
1121
1282
|
readonly forceMaterialized: string[];
|
|
1122
1283
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1124,15 +1285,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1124
1285
|
readonly forceContext: string[];
|
|
1125
1286
|
readonly hooks: Map<string, Map<string, {
|
|
1126
1287
|
readonly hookName: string;
|
|
1288
|
+
readonly replaceImplementation: boolean;
|
|
1127
1289
|
}>>;
|
|
1128
|
-
readonly externalTypes: Map<string, string>;
|
|
1129
|
-
readonly externalPackages: string[];
|
|
1130
1290
|
readonly moduleName: string;
|
|
1131
1291
|
readonly modules: Map<string, {
|
|
1132
1292
|
readonly name: string;
|
|
1293
|
+
readonly external: boolean | undefined;
|
|
1133
1294
|
readonly packages: string[];
|
|
1134
1295
|
readonly useFoldersLayout: boolean | undefined;
|
|
1135
1296
|
}>;
|
|
1297
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1136
1298
|
readonly globalPackages: string[];
|
|
1137
1299
|
} | U | U_1 | U_2 | U_3>;
|
|
1138
1300
|
or<U_4>(x: U_4): {
|
|
@@ -1144,6 +1306,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1144
1306
|
readonly standaloneComponents: string[];
|
|
1145
1307
|
readonly parameterized: string[];
|
|
1146
1308
|
readonly ignoreMaterialized: string[];
|
|
1309
|
+
readonly ignoreGenerics: string[];
|
|
1147
1310
|
readonly builderClasses: string[];
|
|
1148
1311
|
readonly forceMaterialized: string[];
|
|
1149
1312
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1151,15 +1314,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1151
1314
|
readonly forceContext: string[];
|
|
1152
1315
|
readonly hooks: Map<string, Map<string, {
|
|
1153
1316
|
readonly hookName: string;
|
|
1317
|
+
readonly replaceImplementation: boolean;
|
|
1154
1318
|
}>>;
|
|
1155
|
-
readonly externalTypes: Map<string, string>;
|
|
1156
|
-
readonly externalPackages: string[];
|
|
1157
1319
|
readonly moduleName: string;
|
|
1158
1320
|
readonly modules: Map<string, {
|
|
1159
1321
|
readonly name: string;
|
|
1322
|
+
readonly external: boolean | undefined;
|
|
1160
1323
|
readonly packages: string[];
|
|
1161
1324
|
readonly useFoldersLayout: boolean | undefined;
|
|
1162
1325
|
}>;
|
|
1326
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1163
1327
|
readonly globalPackages: string[];
|
|
1164
1328
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1165
1329
|
success(): boolean;
|
|
@@ -1171,6 +1335,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1171
1335
|
readonly standaloneComponents: string[];
|
|
1172
1336
|
readonly parameterized: string[];
|
|
1173
1337
|
readonly ignoreMaterialized: string[];
|
|
1338
|
+
readonly ignoreGenerics: string[];
|
|
1174
1339
|
readonly builderClasses: string[];
|
|
1175
1340
|
readonly forceMaterialized: string[];
|
|
1176
1341
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1178,15 +1343,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1178
1343
|
readonly forceContext: string[];
|
|
1179
1344
|
readonly hooks: Map<string, Map<string, {
|
|
1180
1345
|
readonly hookName: string;
|
|
1346
|
+
readonly replaceImplementation: boolean;
|
|
1181
1347
|
}>>;
|
|
1182
|
-
readonly externalTypes: Map<string, string>;
|
|
1183
|
-
readonly externalPackages: string[];
|
|
1184
1348
|
readonly moduleName: string;
|
|
1185
1349
|
readonly modules: Map<string, {
|
|
1186
1350
|
readonly name: string;
|
|
1351
|
+
readonly external: boolean | undefined;
|
|
1187
1352
|
readonly packages: string[];
|
|
1188
1353
|
readonly useFoldersLayout: boolean | undefined;
|
|
1189
1354
|
}>;
|
|
1355
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1190
1356
|
readonly globalPackages: string[];
|
|
1191
1357
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
1192
1358
|
error(): string;
|
|
@@ -1198,6 +1364,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1198
1364
|
readonly standaloneComponents: string[];
|
|
1199
1365
|
readonly parameterized: string[];
|
|
1200
1366
|
readonly ignoreMaterialized: string[];
|
|
1367
|
+
readonly ignoreGenerics: string[];
|
|
1201
1368
|
readonly builderClasses: string[];
|
|
1202
1369
|
readonly forceMaterialized: string[];
|
|
1203
1370
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1205,15 +1372,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1205
1372
|
readonly forceContext: string[];
|
|
1206
1373
|
readonly hooks: Map<string, Map<string, {
|
|
1207
1374
|
readonly hookName: string;
|
|
1375
|
+
readonly replaceImplementation: boolean;
|
|
1208
1376
|
}>>;
|
|
1209
|
-
readonly externalTypes: Map<string, string>;
|
|
1210
|
-
readonly externalPackages: string[];
|
|
1211
1377
|
readonly moduleName: string;
|
|
1212
1378
|
readonly modules: Map<string, {
|
|
1213
1379
|
readonly name: string;
|
|
1380
|
+
readonly external: boolean | undefined;
|
|
1214
1381
|
readonly packages: string[];
|
|
1215
1382
|
readonly useFoldersLayout: boolean | undefined;
|
|
1216
1383
|
}>;
|
|
1384
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1217
1385
|
readonly globalPackages: string[];
|
|
1218
1386
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1219
1387
|
or<U_5>(x: U_5): {
|
|
@@ -1225,6 +1393,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1225
1393
|
readonly standaloneComponents: string[];
|
|
1226
1394
|
readonly parameterized: string[];
|
|
1227
1395
|
readonly ignoreMaterialized: string[];
|
|
1396
|
+
readonly ignoreGenerics: string[];
|
|
1228
1397
|
readonly builderClasses: string[];
|
|
1229
1398
|
readonly forceMaterialized: string[];
|
|
1230
1399
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1232,15 +1401,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1232
1401
|
readonly forceContext: string[];
|
|
1233
1402
|
readonly hooks: Map<string, Map<string, {
|
|
1234
1403
|
readonly hookName: string;
|
|
1404
|
+
readonly replaceImplementation: boolean;
|
|
1235
1405
|
}>>;
|
|
1236
|
-
readonly externalTypes: Map<string, string>;
|
|
1237
|
-
readonly externalPackages: string[];
|
|
1238
1406
|
readonly moduleName: string;
|
|
1239
1407
|
readonly modules: Map<string, {
|
|
1240
1408
|
readonly name: string;
|
|
1409
|
+
readonly external: boolean | undefined;
|
|
1241
1410
|
readonly packages: string[];
|
|
1242
1411
|
readonly useFoldersLayout: boolean | undefined;
|
|
1243
1412
|
}>;
|
|
1413
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1244
1414
|
readonly globalPackages: string[];
|
|
1245
1415
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1246
1416
|
success(): boolean;
|
|
@@ -1252,6 +1422,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1252
1422
|
readonly standaloneComponents: string[];
|
|
1253
1423
|
readonly parameterized: string[];
|
|
1254
1424
|
readonly ignoreMaterialized: string[];
|
|
1425
|
+
readonly ignoreGenerics: string[];
|
|
1255
1426
|
readonly builderClasses: string[];
|
|
1256
1427
|
readonly forceMaterialized: string[];
|
|
1257
1428
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1259,15 +1430,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1259
1430
|
readonly forceContext: string[];
|
|
1260
1431
|
readonly hooks: Map<string, Map<string, {
|
|
1261
1432
|
readonly hookName: string;
|
|
1433
|
+
readonly replaceImplementation: boolean;
|
|
1262
1434
|
}>>;
|
|
1263
|
-
readonly externalTypes: Map<string, string>;
|
|
1264
|
-
readonly externalPackages: string[];
|
|
1265
1435
|
readonly moduleName: string;
|
|
1266
1436
|
readonly modules: Map<string, {
|
|
1267
1437
|
readonly name: string;
|
|
1438
|
+
readonly external: boolean | undefined;
|
|
1268
1439
|
readonly packages: string[];
|
|
1269
1440
|
readonly useFoldersLayout: boolean | undefined;
|
|
1270
1441
|
}>;
|
|
1442
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1271
1443
|
readonly globalPackages: string[];
|
|
1272
1444
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
1273
1445
|
error(): string;
|
|
@@ -1279,6 +1451,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1279
1451
|
readonly standaloneComponents: string[];
|
|
1280
1452
|
readonly parameterized: string[];
|
|
1281
1453
|
readonly ignoreMaterialized: string[];
|
|
1454
|
+
readonly ignoreGenerics: string[];
|
|
1282
1455
|
readonly builderClasses: string[];
|
|
1283
1456
|
readonly forceMaterialized: string[];
|
|
1284
1457
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1286,15 +1459,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1286
1459
|
readonly forceContext: string[];
|
|
1287
1460
|
readonly hooks: Map<string, Map<string, {
|
|
1288
1461
|
readonly hookName: string;
|
|
1462
|
+
readonly replaceImplementation: boolean;
|
|
1289
1463
|
}>>;
|
|
1290
|
-
readonly externalTypes: Map<string, string>;
|
|
1291
|
-
readonly externalPackages: string[];
|
|
1292
1464
|
readonly moduleName: string;
|
|
1293
1465
|
readonly modules: Map<string, {
|
|
1294
1466
|
readonly name: string;
|
|
1467
|
+
readonly external: boolean | undefined;
|
|
1295
1468
|
readonly packages: string[];
|
|
1296
1469
|
readonly useFoldersLayout: boolean | undefined;
|
|
1297
1470
|
}>;
|
|
1471
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1298
1472
|
readonly globalPackages: string[];
|
|
1299
1473
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1300
1474
|
or<U_6>(x: U_6): {
|
|
@@ -1306,6 +1480,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1306
1480
|
readonly standaloneComponents: string[];
|
|
1307
1481
|
readonly parameterized: string[];
|
|
1308
1482
|
readonly ignoreMaterialized: string[];
|
|
1483
|
+
readonly ignoreGenerics: string[];
|
|
1309
1484
|
readonly builderClasses: string[];
|
|
1310
1485
|
readonly forceMaterialized: string[];
|
|
1311
1486
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1313,15 +1488,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1313
1488
|
readonly forceContext: string[];
|
|
1314
1489
|
readonly hooks: Map<string, Map<string, {
|
|
1315
1490
|
readonly hookName: string;
|
|
1491
|
+
readonly replaceImplementation: boolean;
|
|
1316
1492
|
}>>;
|
|
1317
|
-
readonly externalTypes: Map<string, string>;
|
|
1318
|
-
readonly externalPackages: string[];
|
|
1319
1493
|
readonly moduleName: string;
|
|
1320
1494
|
readonly modules: Map<string, {
|
|
1321
1495
|
readonly name: string;
|
|
1496
|
+
readonly external: boolean | undefined;
|
|
1322
1497
|
readonly packages: string[];
|
|
1323
1498
|
readonly useFoldersLayout: boolean | undefined;
|
|
1324
1499
|
}>;
|
|
1500
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1325
1501
|
readonly globalPackages: string[];
|
|
1326
1502
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1327
1503
|
success(): boolean;
|
|
@@ -1333,6 +1509,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1333
1509
|
readonly standaloneComponents: string[];
|
|
1334
1510
|
readonly parameterized: string[];
|
|
1335
1511
|
readonly ignoreMaterialized: string[];
|
|
1512
|
+
readonly ignoreGenerics: string[];
|
|
1336
1513
|
readonly builderClasses: string[];
|
|
1337
1514
|
readonly forceMaterialized: string[];
|
|
1338
1515
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1340,15 +1517,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1340
1517
|
readonly forceContext: string[];
|
|
1341
1518
|
readonly hooks: Map<string, Map<string, {
|
|
1342
1519
|
readonly hookName: string;
|
|
1520
|
+
readonly replaceImplementation: boolean;
|
|
1343
1521
|
}>>;
|
|
1344
|
-
readonly externalTypes: Map<string, string>;
|
|
1345
|
-
readonly externalPackages: string[];
|
|
1346
1522
|
readonly moduleName: string;
|
|
1347
1523
|
readonly modules: Map<string, {
|
|
1348
1524
|
readonly name: string;
|
|
1525
|
+
readonly external: boolean | undefined;
|
|
1349
1526
|
readonly packages: string[];
|
|
1350
1527
|
readonly useFoldersLayout: boolean | undefined;
|
|
1351
1528
|
}>;
|
|
1529
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1352
1530
|
readonly globalPackages: string[];
|
|
1353
1531
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
1354
1532
|
error(): string;
|
|
@@ -1360,6 +1538,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1360
1538
|
readonly standaloneComponents: string[];
|
|
1361
1539
|
readonly parameterized: string[];
|
|
1362
1540
|
readonly ignoreMaterialized: string[];
|
|
1541
|
+
readonly ignoreGenerics: string[];
|
|
1363
1542
|
readonly builderClasses: string[];
|
|
1364
1543
|
readonly forceMaterialized: string[];
|
|
1365
1544
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1367,15 +1546,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1367
1546
|
readonly forceContext: string[];
|
|
1368
1547
|
readonly hooks: Map<string, Map<string, {
|
|
1369
1548
|
readonly hookName: string;
|
|
1549
|
+
readonly replaceImplementation: boolean;
|
|
1370
1550
|
}>>;
|
|
1371
|
-
readonly externalTypes: Map<string, string>;
|
|
1372
|
-
readonly externalPackages: string[];
|
|
1373
1551
|
readonly moduleName: string;
|
|
1374
1552
|
readonly modules: Map<string, {
|
|
1375
1553
|
readonly name: string;
|
|
1554
|
+
readonly external: boolean | undefined;
|
|
1376
1555
|
readonly packages: string[];
|
|
1377
1556
|
readonly useFoldersLayout: boolean | undefined;
|
|
1378
1557
|
}>;
|
|
1558
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1379
1559
|
readonly globalPackages: string[];
|
|
1380
1560
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1381
1561
|
or<U_7>(x: U_7): {
|
|
@@ -1387,6 +1567,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1387
1567
|
readonly standaloneComponents: string[];
|
|
1388
1568
|
readonly parameterized: string[];
|
|
1389
1569
|
readonly ignoreMaterialized: string[];
|
|
1570
|
+
readonly ignoreGenerics: string[];
|
|
1390
1571
|
readonly builderClasses: string[];
|
|
1391
1572
|
readonly forceMaterialized: string[];
|
|
1392
1573
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1394,15 +1575,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1394
1575
|
readonly forceContext: string[];
|
|
1395
1576
|
readonly hooks: Map<string, Map<string, {
|
|
1396
1577
|
readonly hookName: string;
|
|
1578
|
+
readonly replaceImplementation: boolean;
|
|
1397
1579
|
}>>;
|
|
1398
|
-
readonly externalTypes: Map<string, string>;
|
|
1399
|
-
readonly externalPackages: string[];
|
|
1400
1580
|
readonly moduleName: string;
|
|
1401
1581
|
readonly modules: Map<string, {
|
|
1402
1582
|
readonly name: string;
|
|
1583
|
+
readonly external: boolean | undefined;
|
|
1403
1584
|
readonly packages: string[];
|
|
1404
1585
|
readonly useFoldersLayout: boolean | undefined;
|
|
1405
1586
|
}>;
|
|
1587
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1406
1588
|
readonly globalPackages: string[];
|
|
1407
1589
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1408
1590
|
success(): boolean;
|
|
@@ -1414,6 +1596,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1414
1596
|
readonly standaloneComponents: string[];
|
|
1415
1597
|
readonly parameterized: string[];
|
|
1416
1598
|
readonly ignoreMaterialized: string[];
|
|
1599
|
+
readonly ignoreGenerics: string[];
|
|
1417
1600
|
readonly builderClasses: string[];
|
|
1418
1601
|
readonly forceMaterialized: string[];
|
|
1419
1602
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1421,15 +1604,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1421
1604
|
readonly forceContext: string[];
|
|
1422
1605
|
readonly hooks: Map<string, Map<string, {
|
|
1423
1606
|
readonly hookName: string;
|
|
1607
|
+
readonly replaceImplementation: boolean;
|
|
1424
1608
|
}>>;
|
|
1425
|
-
readonly externalTypes: Map<string, string>;
|
|
1426
|
-
readonly externalPackages: string[];
|
|
1427
1609
|
readonly moduleName: string;
|
|
1428
1610
|
readonly modules: Map<string, {
|
|
1429
1611
|
readonly name: string;
|
|
1612
|
+
readonly external: boolean | undefined;
|
|
1430
1613
|
readonly packages: string[];
|
|
1431
1614
|
readonly useFoldersLayout: boolean | undefined;
|
|
1432
1615
|
}>;
|
|
1616
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1433
1617
|
readonly globalPackages: string[];
|
|
1434
1618
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
1435
1619
|
error(): string;
|
|
@@ -1441,6 +1625,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1441
1625
|
readonly standaloneComponents: string[];
|
|
1442
1626
|
readonly parameterized: string[];
|
|
1443
1627
|
readonly ignoreMaterialized: string[];
|
|
1628
|
+
readonly ignoreGenerics: string[];
|
|
1444
1629
|
readonly builderClasses: string[];
|
|
1445
1630
|
readonly forceMaterialized: string[];
|
|
1446
1631
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1448,15 +1633,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1448
1633
|
readonly forceContext: string[];
|
|
1449
1634
|
readonly hooks: Map<string, Map<string, {
|
|
1450
1635
|
readonly hookName: string;
|
|
1636
|
+
readonly replaceImplementation: boolean;
|
|
1451
1637
|
}>>;
|
|
1452
|
-
readonly externalTypes: Map<string, string>;
|
|
1453
|
-
readonly externalPackages: string[];
|
|
1454
1638
|
readonly moduleName: string;
|
|
1455
1639
|
readonly modules: Map<string, {
|
|
1456
1640
|
readonly name: string;
|
|
1641
|
+
readonly external: boolean | undefined;
|
|
1457
1642
|
readonly packages: string[];
|
|
1458
1643
|
readonly useFoldersLayout: boolean | undefined;
|
|
1459
1644
|
}>;
|
|
1645
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1460
1646
|
readonly globalPackages: string[];
|
|
1461
1647
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1462
1648
|
or<U_8>(x: U_8): {
|
|
@@ -1468,6 +1654,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1468
1654
|
readonly standaloneComponents: string[];
|
|
1469
1655
|
readonly parameterized: string[];
|
|
1470
1656
|
readonly ignoreMaterialized: string[];
|
|
1657
|
+
readonly ignoreGenerics: string[];
|
|
1471
1658
|
readonly builderClasses: string[];
|
|
1472
1659
|
readonly forceMaterialized: string[];
|
|
1473
1660
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1475,15 +1662,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1475
1662
|
readonly forceContext: string[];
|
|
1476
1663
|
readonly hooks: Map<string, Map<string, {
|
|
1477
1664
|
readonly hookName: string;
|
|
1665
|
+
readonly replaceImplementation: boolean;
|
|
1478
1666
|
}>>;
|
|
1479
|
-
readonly externalTypes: Map<string, string>;
|
|
1480
|
-
readonly externalPackages: string[];
|
|
1481
1667
|
readonly moduleName: string;
|
|
1482
1668
|
readonly modules: Map<string, {
|
|
1483
1669
|
readonly name: string;
|
|
1670
|
+
readonly external: boolean | undefined;
|
|
1484
1671
|
readonly packages: string[];
|
|
1485
1672
|
readonly useFoldersLayout: boolean | undefined;
|
|
1486
1673
|
}>;
|
|
1674
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1487
1675
|
readonly globalPackages: string[];
|
|
1488
1676
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1489
1677
|
success(): boolean;
|
|
@@ -1495,6 +1683,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1495
1683
|
readonly standaloneComponents: string[];
|
|
1496
1684
|
readonly parameterized: string[];
|
|
1497
1685
|
readonly ignoreMaterialized: string[];
|
|
1686
|
+
readonly ignoreGenerics: string[];
|
|
1498
1687
|
readonly builderClasses: string[];
|
|
1499
1688
|
readonly forceMaterialized: string[];
|
|
1500
1689
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1502,15 +1691,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1502
1691
|
readonly forceContext: string[];
|
|
1503
1692
|
readonly hooks: Map<string, Map<string, {
|
|
1504
1693
|
readonly hookName: string;
|
|
1694
|
+
readonly replaceImplementation: boolean;
|
|
1505
1695
|
}>>;
|
|
1506
|
-
readonly externalTypes: Map<string, string>;
|
|
1507
|
-
readonly externalPackages: string[];
|
|
1508
1696
|
readonly moduleName: string;
|
|
1509
1697
|
readonly modules: Map<string, {
|
|
1510
1698
|
readonly name: string;
|
|
1699
|
+
readonly external: boolean | undefined;
|
|
1511
1700
|
readonly packages: string[];
|
|
1512
1701
|
readonly useFoldersLayout: boolean | undefined;
|
|
1513
1702
|
}>;
|
|
1703
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1514
1704
|
readonly globalPackages: string[];
|
|
1515
1705
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
1516
1706
|
error(): string;
|
|
@@ -1522,6 +1712,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1522
1712
|
readonly standaloneComponents: string[];
|
|
1523
1713
|
readonly parameterized: string[];
|
|
1524
1714
|
readonly ignoreMaterialized: string[];
|
|
1715
|
+
readonly ignoreGenerics: string[];
|
|
1525
1716
|
readonly builderClasses: string[];
|
|
1526
1717
|
readonly forceMaterialized: string[];
|
|
1527
1718
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1529,15 +1720,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1529
1720
|
readonly forceContext: string[];
|
|
1530
1721
|
readonly hooks: Map<string, Map<string, {
|
|
1531
1722
|
readonly hookName: string;
|
|
1723
|
+
readonly replaceImplementation: boolean;
|
|
1532
1724
|
}>>;
|
|
1533
|
-
readonly externalTypes: Map<string, string>;
|
|
1534
|
-
readonly externalPackages: string[];
|
|
1535
1725
|
readonly moduleName: string;
|
|
1536
1726
|
readonly modules: Map<string, {
|
|
1537
1727
|
readonly name: string;
|
|
1728
|
+
readonly external: boolean | undefined;
|
|
1538
1729
|
readonly packages: string[];
|
|
1539
1730
|
readonly useFoldersLayout: boolean | undefined;
|
|
1540
1731
|
}>;
|
|
1732
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1541
1733
|
readonly globalPackages: string[];
|
|
1542
1734
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1543
1735
|
or<U_9>(x: U_9): {
|
|
@@ -1549,6 +1741,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1549
1741
|
readonly standaloneComponents: string[];
|
|
1550
1742
|
readonly parameterized: string[];
|
|
1551
1743
|
readonly ignoreMaterialized: string[];
|
|
1744
|
+
readonly ignoreGenerics: string[];
|
|
1552
1745
|
readonly builderClasses: string[];
|
|
1553
1746
|
readonly forceMaterialized: string[];
|
|
1554
1747
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1556,15 +1749,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1556
1749
|
readonly forceContext: string[];
|
|
1557
1750
|
readonly hooks: Map<string, Map<string, {
|
|
1558
1751
|
readonly hookName: string;
|
|
1752
|
+
readonly replaceImplementation: boolean;
|
|
1559
1753
|
}>>;
|
|
1560
|
-
readonly externalTypes: Map<string, string>;
|
|
1561
|
-
readonly externalPackages: string[];
|
|
1562
1754
|
readonly moduleName: string;
|
|
1563
1755
|
readonly modules: Map<string, {
|
|
1564
1756
|
readonly name: string;
|
|
1757
|
+
readonly external: boolean | undefined;
|
|
1565
1758
|
readonly packages: string[];
|
|
1566
1759
|
readonly useFoldersLayout: boolean | undefined;
|
|
1567
1760
|
}>;
|
|
1761
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1568
1762
|
readonly globalPackages: string[];
|
|
1569
1763
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1570
1764
|
success(): boolean;
|
|
@@ -1576,6 +1770,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1576
1770
|
readonly standaloneComponents: string[];
|
|
1577
1771
|
readonly parameterized: string[];
|
|
1578
1772
|
readonly ignoreMaterialized: string[];
|
|
1773
|
+
readonly ignoreGenerics: string[];
|
|
1579
1774
|
readonly builderClasses: string[];
|
|
1580
1775
|
readonly forceMaterialized: string[];
|
|
1581
1776
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1583,15 +1778,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1583
1778
|
readonly forceContext: string[];
|
|
1584
1779
|
readonly hooks: Map<string, Map<string, {
|
|
1585
1780
|
readonly hookName: string;
|
|
1781
|
+
readonly replaceImplementation: boolean;
|
|
1586
1782
|
}>>;
|
|
1587
|
-
readonly externalTypes: Map<string, string>;
|
|
1588
|
-
readonly externalPackages: string[];
|
|
1589
1783
|
readonly moduleName: string;
|
|
1590
1784
|
readonly modules: Map<string, {
|
|
1591
1785
|
readonly name: string;
|
|
1786
|
+
readonly external: boolean | undefined;
|
|
1592
1787
|
readonly packages: string[];
|
|
1593
1788
|
readonly useFoldersLayout: boolean | undefined;
|
|
1594
1789
|
}>;
|
|
1790
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1595
1791
|
readonly globalPackages: string[];
|
|
1596
1792
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
1597
1793
|
error(): string;
|
|
@@ -1603,6 +1799,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1603
1799
|
readonly standaloneComponents: string[];
|
|
1604
1800
|
readonly parameterized: string[];
|
|
1605
1801
|
readonly ignoreMaterialized: string[];
|
|
1802
|
+
readonly ignoreGenerics: string[];
|
|
1606
1803
|
readonly builderClasses: string[];
|
|
1607
1804
|
readonly forceMaterialized: string[];
|
|
1608
1805
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1610,15 +1807,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1610
1807
|
readonly forceContext: string[];
|
|
1611
1808
|
readonly hooks: Map<string, Map<string, {
|
|
1612
1809
|
readonly hookName: string;
|
|
1810
|
+
readonly replaceImplementation: boolean;
|
|
1613
1811
|
}>>;
|
|
1614
|
-
readonly externalTypes: Map<string, string>;
|
|
1615
|
-
readonly externalPackages: string[];
|
|
1616
1812
|
readonly moduleName: string;
|
|
1617
1813
|
readonly modules: Map<string, {
|
|
1618
1814
|
readonly name: string;
|
|
1815
|
+
readonly external: boolean | undefined;
|
|
1619
1816
|
readonly packages: string[];
|
|
1620
1817
|
readonly useFoldersLayout: boolean | undefined;
|
|
1621
1818
|
}>;
|
|
1819
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1622
1820
|
readonly globalPackages: string[];
|
|
1623
1821
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1624
1822
|
or<U_10>(x: U_10): any;
|
|
@@ -1646,6 +1844,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1646
1844
|
readonly standaloneComponents: string[];
|
|
1647
1845
|
readonly parameterized: string[];
|
|
1648
1846
|
readonly ignoreMaterialized: string[];
|
|
1847
|
+
readonly ignoreGenerics: string[];
|
|
1649
1848
|
readonly builderClasses: string[];
|
|
1650
1849
|
readonly forceMaterialized: string[];
|
|
1651
1850
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1653,15 +1852,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1653
1852
|
readonly forceContext: string[];
|
|
1654
1853
|
readonly hooks: Map<string, Map<string, {
|
|
1655
1854
|
readonly hookName: string;
|
|
1855
|
+
readonly replaceImplementation: boolean;
|
|
1656
1856
|
}>>;
|
|
1657
|
-
readonly externalTypes: Map<string, string>;
|
|
1658
|
-
readonly externalPackages: string[];
|
|
1659
1857
|
readonly moduleName: string;
|
|
1660
1858
|
readonly modules: Map<string, {
|
|
1661
1859
|
readonly name: string;
|
|
1860
|
+
readonly external: boolean | undefined;
|
|
1662
1861
|
readonly packages: string[];
|
|
1663
1862
|
readonly useFoldersLayout: boolean | undefined;
|
|
1664
1863
|
}>;
|
|
1864
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1665
1865
|
readonly globalPackages: string[];
|
|
1666
1866
|
}>;
|
|
1667
1867
|
success(): boolean;
|
|
@@ -1673,6 +1873,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1673
1873
|
readonly standaloneComponents: string[];
|
|
1674
1874
|
readonly parameterized: string[];
|
|
1675
1875
|
readonly ignoreMaterialized: string[];
|
|
1876
|
+
readonly ignoreGenerics: string[];
|
|
1676
1877
|
readonly builderClasses: string[];
|
|
1677
1878
|
readonly forceMaterialized: string[];
|
|
1678
1879
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1680,15 +1881,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1680
1881
|
readonly forceContext: string[];
|
|
1681
1882
|
readonly hooks: Map<string, Map<string, {
|
|
1682
1883
|
readonly hookName: string;
|
|
1884
|
+
readonly replaceImplementation: boolean;
|
|
1683
1885
|
}>>;
|
|
1684
|
-
readonly externalTypes: Map<string, string>;
|
|
1685
|
-
readonly externalPackages: string[];
|
|
1686
1886
|
readonly moduleName: string;
|
|
1687
1887
|
readonly modules: Map<string, {
|
|
1688
1888
|
readonly name: string;
|
|
1889
|
+
readonly external: boolean | undefined;
|
|
1689
1890
|
readonly packages: string[];
|
|
1690
1891
|
readonly useFoldersLayout: boolean | undefined;
|
|
1691
1892
|
}>;
|
|
1893
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1692
1894
|
readonly globalPackages: string[];
|
|
1693
1895
|
};
|
|
1694
1896
|
error(): string;
|
|
@@ -1700,6 +1902,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1700
1902
|
readonly standaloneComponents: string[];
|
|
1701
1903
|
readonly parameterized: string[];
|
|
1702
1904
|
readonly ignoreMaterialized: string[];
|
|
1905
|
+
readonly ignoreGenerics: string[];
|
|
1703
1906
|
readonly builderClasses: string[];
|
|
1704
1907
|
readonly forceMaterialized: string[];
|
|
1705
1908
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1707,15 +1910,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1707
1910
|
readonly forceContext: string[];
|
|
1708
1911
|
readonly hooks: Map<string, Map<string, {
|
|
1709
1912
|
readonly hookName: string;
|
|
1913
|
+
readonly replaceImplementation: boolean;
|
|
1710
1914
|
}>>;
|
|
1711
|
-
readonly externalTypes: Map<string, string>;
|
|
1712
|
-
readonly externalPackages: string[];
|
|
1713
1915
|
readonly moduleName: string;
|
|
1714
1916
|
readonly modules: Map<string, {
|
|
1715
1917
|
readonly name: string;
|
|
1918
|
+
readonly external: boolean | undefined;
|
|
1716
1919
|
readonly packages: string[];
|
|
1717
1920
|
readonly useFoldersLayout: boolean | undefined;
|
|
1718
1921
|
}>;
|
|
1922
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1719
1923
|
readonly globalPackages: string[];
|
|
1720
1924
|
}>;
|
|
1721
1925
|
or<U>(x: U): {
|
|
@@ -1727,6 +1931,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1727
1931
|
readonly standaloneComponents: string[];
|
|
1728
1932
|
readonly parameterized: string[];
|
|
1729
1933
|
readonly ignoreMaterialized: string[];
|
|
1934
|
+
readonly ignoreGenerics: string[];
|
|
1730
1935
|
readonly builderClasses: string[];
|
|
1731
1936
|
readonly forceMaterialized: string[];
|
|
1732
1937
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1734,15 +1939,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1734
1939
|
readonly forceContext: string[];
|
|
1735
1940
|
readonly hooks: Map<string, Map<string, {
|
|
1736
1941
|
readonly hookName: string;
|
|
1942
|
+
readonly replaceImplementation: boolean;
|
|
1737
1943
|
}>>;
|
|
1738
|
-
readonly externalTypes: Map<string, string>;
|
|
1739
|
-
readonly externalPackages: string[];
|
|
1740
1944
|
readonly moduleName: string;
|
|
1741
1945
|
readonly modules: Map<string, {
|
|
1742
1946
|
readonly name: string;
|
|
1947
|
+
readonly external: boolean | undefined;
|
|
1743
1948
|
readonly packages: string[];
|
|
1744
1949
|
readonly useFoldersLayout: boolean | undefined;
|
|
1745
1950
|
}>;
|
|
1951
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1746
1952
|
readonly globalPackages: string[];
|
|
1747
1953
|
} | U>;
|
|
1748
1954
|
success(): boolean;
|
|
@@ -1754,6 +1960,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1754
1960
|
readonly standaloneComponents: string[];
|
|
1755
1961
|
readonly parameterized: string[];
|
|
1756
1962
|
readonly ignoreMaterialized: string[];
|
|
1963
|
+
readonly ignoreGenerics: string[];
|
|
1757
1964
|
readonly builderClasses: string[];
|
|
1758
1965
|
readonly forceMaterialized: string[];
|
|
1759
1966
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1761,15 +1968,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1761
1968
|
readonly forceContext: string[];
|
|
1762
1969
|
readonly hooks: Map<string, Map<string, {
|
|
1763
1970
|
readonly hookName: string;
|
|
1971
|
+
readonly replaceImplementation: boolean;
|
|
1764
1972
|
}>>;
|
|
1765
|
-
readonly externalTypes: Map<string, string>;
|
|
1766
|
-
readonly externalPackages: string[];
|
|
1767
1973
|
readonly moduleName: string;
|
|
1768
1974
|
readonly modules: Map<string, {
|
|
1769
1975
|
readonly name: string;
|
|
1976
|
+
readonly external: boolean | undefined;
|
|
1770
1977
|
readonly packages: string[];
|
|
1771
1978
|
readonly useFoldersLayout: boolean | undefined;
|
|
1772
1979
|
}>;
|
|
1980
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1773
1981
|
readonly globalPackages: string[];
|
|
1774
1982
|
} | U;
|
|
1775
1983
|
error(): string;
|
|
@@ -1781,6 +1989,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1781
1989
|
readonly standaloneComponents: string[];
|
|
1782
1990
|
readonly parameterized: string[];
|
|
1783
1991
|
readonly ignoreMaterialized: string[];
|
|
1992
|
+
readonly ignoreGenerics: string[];
|
|
1784
1993
|
readonly builderClasses: string[];
|
|
1785
1994
|
readonly forceMaterialized: string[];
|
|
1786
1995
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1788,15 +1997,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1788
1997
|
readonly forceContext: string[];
|
|
1789
1998
|
readonly hooks: Map<string, Map<string, {
|
|
1790
1999
|
readonly hookName: string;
|
|
2000
|
+
readonly replaceImplementation: boolean;
|
|
1791
2001
|
}>>;
|
|
1792
|
-
readonly externalTypes: Map<string, string>;
|
|
1793
|
-
readonly externalPackages: string[];
|
|
1794
2002
|
readonly moduleName: string;
|
|
1795
2003
|
readonly modules: Map<string, {
|
|
1796
2004
|
readonly name: string;
|
|
2005
|
+
readonly external: boolean | undefined;
|
|
1797
2006
|
readonly packages: string[];
|
|
1798
2007
|
readonly useFoldersLayout: boolean | undefined;
|
|
1799
2008
|
}>;
|
|
2009
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1800
2010
|
readonly globalPackages: string[];
|
|
1801
2011
|
} | U>;
|
|
1802
2012
|
or<U_1>(x: U_1): {
|
|
@@ -1808,6 +2018,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1808
2018
|
readonly standaloneComponents: string[];
|
|
1809
2019
|
readonly parameterized: string[];
|
|
1810
2020
|
readonly ignoreMaterialized: string[];
|
|
2021
|
+
readonly ignoreGenerics: string[];
|
|
1811
2022
|
readonly builderClasses: string[];
|
|
1812
2023
|
readonly forceMaterialized: string[];
|
|
1813
2024
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1815,15 +2026,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1815
2026
|
readonly forceContext: string[];
|
|
1816
2027
|
readonly hooks: Map<string, Map<string, {
|
|
1817
2028
|
readonly hookName: string;
|
|
2029
|
+
readonly replaceImplementation: boolean;
|
|
1818
2030
|
}>>;
|
|
1819
|
-
readonly externalTypes: Map<string, string>;
|
|
1820
|
-
readonly externalPackages: string[];
|
|
1821
2031
|
readonly moduleName: string;
|
|
1822
2032
|
readonly modules: Map<string, {
|
|
1823
2033
|
readonly name: string;
|
|
2034
|
+
readonly external: boolean | undefined;
|
|
1824
2035
|
readonly packages: string[];
|
|
1825
2036
|
readonly useFoldersLayout: boolean | undefined;
|
|
1826
2037
|
}>;
|
|
2038
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1827
2039
|
readonly globalPackages: string[];
|
|
1828
2040
|
} | U | U_1>;
|
|
1829
2041
|
success(): boolean;
|
|
@@ -1835,6 +2047,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1835
2047
|
readonly standaloneComponents: string[];
|
|
1836
2048
|
readonly parameterized: string[];
|
|
1837
2049
|
readonly ignoreMaterialized: string[];
|
|
2050
|
+
readonly ignoreGenerics: string[];
|
|
1838
2051
|
readonly builderClasses: string[];
|
|
1839
2052
|
readonly forceMaterialized: string[];
|
|
1840
2053
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1842,15 +2055,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1842
2055
|
readonly forceContext: string[];
|
|
1843
2056
|
readonly hooks: Map<string, Map<string, {
|
|
1844
2057
|
readonly hookName: string;
|
|
2058
|
+
readonly replaceImplementation: boolean;
|
|
1845
2059
|
}>>;
|
|
1846
|
-
readonly externalTypes: Map<string, string>;
|
|
1847
|
-
readonly externalPackages: string[];
|
|
1848
2060
|
readonly moduleName: string;
|
|
1849
2061
|
readonly modules: Map<string, {
|
|
1850
2062
|
readonly name: string;
|
|
2063
|
+
readonly external: boolean | undefined;
|
|
1851
2064
|
readonly packages: string[];
|
|
1852
2065
|
readonly useFoldersLayout: boolean | undefined;
|
|
1853
2066
|
}>;
|
|
2067
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1854
2068
|
readonly globalPackages: string[];
|
|
1855
2069
|
} | U | U_1;
|
|
1856
2070
|
error(): string;
|
|
@@ -1862,6 +2076,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1862
2076
|
readonly standaloneComponents: string[];
|
|
1863
2077
|
readonly parameterized: string[];
|
|
1864
2078
|
readonly ignoreMaterialized: string[];
|
|
2079
|
+
readonly ignoreGenerics: string[];
|
|
1865
2080
|
readonly builderClasses: string[];
|
|
1866
2081
|
readonly forceMaterialized: string[];
|
|
1867
2082
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1869,15 +2084,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1869
2084
|
readonly forceContext: string[];
|
|
1870
2085
|
readonly hooks: Map<string, Map<string, {
|
|
1871
2086
|
readonly hookName: string;
|
|
2087
|
+
readonly replaceImplementation: boolean;
|
|
1872
2088
|
}>>;
|
|
1873
|
-
readonly externalTypes: Map<string, string>;
|
|
1874
|
-
readonly externalPackages: string[];
|
|
1875
2089
|
readonly moduleName: string;
|
|
1876
2090
|
readonly modules: Map<string, {
|
|
1877
2091
|
readonly name: string;
|
|
2092
|
+
readonly external: boolean | undefined;
|
|
1878
2093
|
readonly packages: string[];
|
|
1879
2094
|
readonly useFoldersLayout: boolean | undefined;
|
|
1880
2095
|
}>;
|
|
2096
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1881
2097
|
readonly globalPackages: string[];
|
|
1882
2098
|
} | U | U_1>;
|
|
1883
2099
|
or<U_2>(x: U_2): {
|
|
@@ -1889,6 +2105,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1889
2105
|
readonly standaloneComponents: string[];
|
|
1890
2106
|
readonly parameterized: string[];
|
|
1891
2107
|
readonly ignoreMaterialized: string[];
|
|
2108
|
+
readonly ignoreGenerics: string[];
|
|
1892
2109
|
readonly builderClasses: string[];
|
|
1893
2110
|
readonly forceMaterialized: string[];
|
|
1894
2111
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1896,15 +2113,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1896
2113
|
readonly forceContext: string[];
|
|
1897
2114
|
readonly hooks: Map<string, Map<string, {
|
|
1898
2115
|
readonly hookName: string;
|
|
2116
|
+
readonly replaceImplementation: boolean;
|
|
1899
2117
|
}>>;
|
|
1900
|
-
readonly externalTypes: Map<string, string>;
|
|
1901
|
-
readonly externalPackages: string[];
|
|
1902
2118
|
readonly moduleName: string;
|
|
1903
2119
|
readonly modules: Map<string, {
|
|
1904
2120
|
readonly name: string;
|
|
2121
|
+
readonly external: boolean | undefined;
|
|
1905
2122
|
readonly packages: string[];
|
|
1906
2123
|
readonly useFoldersLayout: boolean | undefined;
|
|
1907
2124
|
}>;
|
|
2125
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1908
2126
|
readonly globalPackages: string[];
|
|
1909
2127
|
} | U | U_1 | U_2>;
|
|
1910
2128
|
success(): boolean;
|
|
@@ -1916,6 +2134,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1916
2134
|
readonly standaloneComponents: string[];
|
|
1917
2135
|
readonly parameterized: string[];
|
|
1918
2136
|
readonly ignoreMaterialized: string[];
|
|
2137
|
+
readonly ignoreGenerics: string[];
|
|
1919
2138
|
readonly builderClasses: string[];
|
|
1920
2139
|
readonly forceMaterialized: string[];
|
|
1921
2140
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1923,15 +2142,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1923
2142
|
readonly forceContext: string[];
|
|
1924
2143
|
readonly hooks: Map<string, Map<string, {
|
|
1925
2144
|
readonly hookName: string;
|
|
2145
|
+
readonly replaceImplementation: boolean;
|
|
1926
2146
|
}>>;
|
|
1927
|
-
readonly externalTypes: Map<string, string>;
|
|
1928
|
-
readonly externalPackages: string[];
|
|
1929
2147
|
readonly moduleName: string;
|
|
1930
2148
|
readonly modules: Map<string, {
|
|
1931
2149
|
readonly name: string;
|
|
2150
|
+
readonly external: boolean | undefined;
|
|
1932
2151
|
readonly packages: string[];
|
|
1933
2152
|
readonly useFoldersLayout: boolean | undefined;
|
|
1934
2153
|
}>;
|
|
2154
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1935
2155
|
readonly globalPackages: string[];
|
|
1936
2156
|
} | U | U_1 | U_2;
|
|
1937
2157
|
error(): string;
|
|
@@ -1943,6 +2163,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1943
2163
|
readonly standaloneComponents: string[];
|
|
1944
2164
|
readonly parameterized: string[];
|
|
1945
2165
|
readonly ignoreMaterialized: string[];
|
|
2166
|
+
readonly ignoreGenerics: string[];
|
|
1946
2167
|
readonly builderClasses: string[];
|
|
1947
2168
|
readonly forceMaterialized: string[];
|
|
1948
2169
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1950,15 +2171,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1950
2171
|
readonly forceContext: string[];
|
|
1951
2172
|
readonly hooks: Map<string, Map<string, {
|
|
1952
2173
|
readonly hookName: string;
|
|
2174
|
+
readonly replaceImplementation: boolean;
|
|
1953
2175
|
}>>;
|
|
1954
|
-
readonly externalTypes: Map<string, string>;
|
|
1955
|
-
readonly externalPackages: string[];
|
|
1956
2176
|
readonly moduleName: string;
|
|
1957
2177
|
readonly modules: Map<string, {
|
|
1958
2178
|
readonly name: string;
|
|
2179
|
+
readonly external: boolean | undefined;
|
|
1959
2180
|
readonly packages: string[];
|
|
1960
2181
|
readonly useFoldersLayout: boolean | undefined;
|
|
1961
2182
|
}>;
|
|
2183
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1962
2184
|
readonly globalPackages: string[];
|
|
1963
2185
|
} | U | U_1 | U_2>;
|
|
1964
2186
|
or<U_3>(x: U_3): {
|
|
@@ -1970,6 +2192,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1970
2192
|
readonly standaloneComponents: string[];
|
|
1971
2193
|
readonly parameterized: string[];
|
|
1972
2194
|
readonly ignoreMaterialized: string[];
|
|
2195
|
+
readonly ignoreGenerics: string[];
|
|
1973
2196
|
readonly builderClasses: string[];
|
|
1974
2197
|
readonly forceMaterialized: string[];
|
|
1975
2198
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1977,15 +2200,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
1977
2200
|
readonly forceContext: string[];
|
|
1978
2201
|
readonly hooks: Map<string, Map<string, {
|
|
1979
2202
|
readonly hookName: string;
|
|
2203
|
+
readonly replaceImplementation: boolean;
|
|
1980
2204
|
}>>;
|
|
1981
|
-
readonly externalTypes: Map<string, string>;
|
|
1982
|
-
readonly externalPackages: string[];
|
|
1983
2205
|
readonly moduleName: string;
|
|
1984
2206
|
readonly modules: Map<string, {
|
|
1985
2207
|
readonly name: string;
|
|
2208
|
+
readonly external: boolean | undefined;
|
|
1986
2209
|
readonly packages: string[];
|
|
1987
2210
|
readonly useFoldersLayout: boolean | undefined;
|
|
1988
2211
|
}>;
|
|
2212
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1989
2213
|
readonly globalPackages: string[];
|
|
1990
2214
|
} | U | U_1 | U_2 | U_3>;
|
|
1991
2215
|
success(): boolean;
|
|
@@ -1997,6 +2221,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1997
2221
|
readonly standaloneComponents: string[];
|
|
1998
2222
|
readonly parameterized: string[];
|
|
1999
2223
|
readonly ignoreMaterialized: string[];
|
|
2224
|
+
readonly ignoreGenerics: string[];
|
|
2000
2225
|
readonly builderClasses: string[];
|
|
2001
2226
|
readonly forceMaterialized: string[];
|
|
2002
2227
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2004,15 +2229,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2004
2229
|
readonly forceContext: string[];
|
|
2005
2230
|
readonly hooks: Map<string, Map<string, {
|
|
2006
2231
|
readonly hookName: string;
|
|
2232
|
+
readonly replaceImplementation: boolean;
|
|
2007
2233
|
}>>;
|
|
2008
|
-
readonly externalTypes: Map<string, string>;
|
|
2009
|
-
readonly externalPackages: string[];
|
|
2010
2234
|
readonly moduleName: string;
|
|
2011
2235
|
readonly modules: Map<string, {
|
|
2012
2236
|
readonly name: string;
|
|
2237
|
+
readonly external: boolean | undefined;
|
|
2013
2238
|
readonly packages: string[];
|
|
2014
2239
|
readonly useFoldersLayout: boolean | undefined;
|
|
2015
2240
|
}>;
|
|
2241
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2016
2242
|
readonly globalPackages: string[];
|
|
2017
2243
|
} | U | U_1 | U_2 | U_3;
|
|
2018
2244
|
error(): string;
|
|
@@ -2024,6 +2250,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2024
2250
|
readonly standaloneComponents: string[];
|
|
2025
2251
|
readonly parameterized: string[];
|
|
2026
2252
|
readonly ignoreMaterialized: string[];
|
|
2253
|
+
readonly ignoreGenerics: string[];
|
|
2027
2254
|
readonly builderClasses: string[];
|
|
2028
2255
|
readonly forceMaterialized: string[];
|
|
2029
2256
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2031,15 +2258,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2031
2258
|
readonly forceContext: string[];
|
|
2032
2259
|
readonly hooks: Map<string, Map<string, {
|
|
2033
2260
|
readonly hookName: string;
|
|
2261
|
+
readonly replaceImplementation: boolean;
|
|
2034
2262
|
}>>;
|
|
2035
|
-
readonly externalTypes: Map<string, string>;
|
|
2036
|
-
readonly externalPackages: string[];
|
|
2037
2263
|
readonly moduleName: string;
|
|
2038
2264
|
readonly modules: Map<string, {
|
|
2039
2265
|
readonly name: string;
|
|
2266
|
+
readonly external: boolean | undefined;
|
|
2040
2267
|
readonly packages: string[];
|
|
2041
2268
|
readonly useFoldersLayout: boolean | undefined;
|
|
2042
2269
|
}>;
|
|
2270
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2043
2271
|
readonly globalPackages: string[];
|
|
2044
2272
|
} | U | U_1 | U_2 | U_3>;
|
|
2045
2273
|
or<U_4>(x: U_4): {
|
|
@@ -2051,6 +2279,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2051
2279
|
readonly standaloneComponents: string[];
|
|
2052
2280
|
readonly parameterized: string[];
|
|
2053
2281
|
readonly ignoreMaterialized: string[];
|
|
2282
|
+
readonly ignoreGenerics: string[];
|
|
2054
2283
|
readonly builderClasses: string[];
|
|
2055
2284
|
readonly forceMaterialized: string[];
|
|
2056
2285
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2058,15 +2287,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2058
2287
|
readonly forceContext: string[];
|
|
2059
2288
|
readonly hooks: Map<string, Map<string, {
|
|
2060
2289
|
readonly hookName: string;
|
|
2290
|
+
readonly replaceImplementation: boolean;
|
|
2061
2291
|
}>>;
|
|
2062
|
-
readonly externalTypes: Map<string, string>;
|
|
2063
|
-
readonly externalPackages: string[];
|
|
2064
2292
|
readonly moduleName: string;
|
|
2065
2293
|
readonly modules: Map<string, {
|
|
2066
2294
|
readonly name: string;
|
|
2295
|
+
readonly external: boolean | undefined;
|
|
2067
2296
|
readonly packages: string[];
|
|
2068
2297
|
readonly useFoldersLayout: boolean | undefined;
|
|
2069
2298
|
}>;
|
|
2299
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2070
2300
|
readonly globalPackages: string[];
|
|
2071
2301
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
2072
2302
|
success(): boolean;
|
|
@@ -2078,6 +2308,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2078
2308
|
readonly standaloneComponents: string[];
|
|
2079
2309
|
readonly parameterized: string[];
|
|
2080
2310
|
readonly ignoreMaterialized: string[];
|
|
2311
|
+
readonly ignoreGenerics: string[];
|
|
2081
2312
|
readonly builderClasses: string[];
|
|
2082
2313
|
readonly forceMaterialized: string[];
|
|
2083
2314
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2085,15 +2316,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2085
2316
|
readonly forceContext: string[];
|
|
2086
2317
|
readonly hooks: Map<string, Map<string, {
|
|
2087
2318
|
readonly hookName: string;
|
|
2319
|
+
readonly replaceImplementation: boolean;
|
|
2088
2320
|
}>>;
|
|
2089
|
-
readonly externalTypes: Map<string, string>;
|
|
2090
|
-
readonly externalPackages: string[];
|
|
2091
2321
|
readonly moduleName: string;
|
|
2092
2322
|
readonly modules: Map<string, {
|
|
2093
2323
|
readonly name: string;
|
|
2324
|
+
readonly external: boolean | undefined;
|
|
2094
2325
|
readonly packages: string[];
|
|
2095
2326
|
readonly useFoldersLayout: boolean | undefined;
|
|
2096
2327
|
}>;
|
|
2328
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2097
2329
|
readonly globalPackages: string[];
|
|
2098
2330
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
2099
2331
|
error(): string;
|
|
@@ -2105,6 +2337,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2105
2337
|
readonly standaloneComponents: string[];
|
|
2106
2338
|
readonly parameterized: string[];
|
|
2107
2339
|
readonly ignoreMaterialized: string[];
|
|
2340
|
+
readonly ignoreGenerics: string[];
|
|
2108
2341
|
readonly builderClasses: string[];
|
|
2109
2342
|
readonly forceMaterialized: string[];
|
|
2110
2343
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2112,15 +2345,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2112
2345
|
readonly forceContext: string[];
|
|
2113
2346
|
readonly hooks: Map<string, Map<string, {
|
|
2114
2347
|
readonly hookName: string;
|
|
2348
|
+
readonly replaceImplementation: boolean;
|
|
2115
2349
|
}>>;
|
|
2116
|
-
readonly externalTypes: Map<string, string>;
|
|
2117
|
-
readonly externalPackages: string[];
|
|
2118
2350
|
readonly moduleName: string;
|
|
2119
2351
|
readonly modules: Map<string, {
|
|
2120
2352
|
readonly name: string;
|
|
2353
|
+
readonly external: boolean | undefined;
|
|
2121
2354
|
readonly packages: string[];
|
|
2122
2355
|
readonly useFoldersLayout: boolean | undefined;
|
|
2123
2356
|
}>;
|
|
2357
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2124
2358
|
readonly globalPackages: string[];
|
|
2125
2359
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
2126
2360
|
or<U_5>(x: U_5): {
|
|
@@ -2132,6 +2366,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2132
2366
|
readonly standaloneComponents: string[];
|
|
2133
2367
|
readonly parameterized: string[];
|
|
2134
2368
|
readonly ignoreMaterialized: string[];
|
|
2369
|
+
readonly ignoreGenerics: string[];
|
|
2135
2370
|
readonly builderClasses: string[];
|
|
2136
2371
|
readonly forceMaterialized: string[];
|
|
2137
2372
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2139,15 +2374,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2139
2374
|
readonly forceContext: string[];
|
|
2140
2375
|
readonly hooks: Map<string, Map<string, {
|
|
2141
2376
|
readonly hookName: string;
|
|
2377
|
+
readonly replaceImplementation: boolean;
|
|
2142
2378
|
}>>;
|
|
2143
|
-
readonly externalTypes: Map<string, string>;
|
|
2144
|
-
readonly externalPackages: string[];
|
|
2145
2379
|
readonly moduleName: string;
|
|
2146
2380
|
readonly modules: Map<string, {
|
|
2147
2381
|
readonly name: string;
|
|
2382
|
+
readonly external: boolean | undefined;
|
|
2148
2383
|
readonly packages: string[];
|
|
2149
2384
|
readonly useFoldersLayout: boolean | undefined;
|
|
2150
2385
|
}>;
|
|
2386
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2151
2387
|
readonly globalPackages: string[];
|
|
2152
2388
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
2153
2389
|
success(): boolean;
|
|
@@ -2159,6 +2395,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2159
2395
|
readonly standaloneComponents: string[];
|
|
2160
2396
|
readonly parameterized: string[];
|
|
2161
2397
|
readonly ignoreMaterialized: string[];
|
|
2398
|
+
readonly ignoreGenerics: string[];
|
|
2162
2399
|
readonly builderClasses: string[];
|
|
2163
2400
|
readonly forceMaterialized: string[];
|
|
2164
2401
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2166,15 +2403,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2166
2403
|
readonly forceContext: string[];
|
|
2167
2404
|
readonly hooks: Map<string, Map<string, {
|
|
2168
2405
|
readonly hookName: string;
|
|
2406
|
+
readonly replaceImplementation: boolean;
|
|
2169
2407
|
}>>;
|
|
2170
|
-
readonly externalTypes: Map<string, string>;
|
|
2171
|
-
readonly externalPackages: string[];
|
|
2172
2408
|
readonly moduleName: string;
|
|
2173
2409
|
readonly modules: Map<string, {
|
|
2174
2410
|
readonly name: string;
|
|
2411
|
+
readonly external: boolean | undefined;
|
|
2175
2412
|
readonly packages: string[];
|
|
2176
2413
|
readonly useFoldersLayout: boolean | undefined;
|
|
2177
2414
|
}>;
|
|
2415
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2178
2416
|
readonly globalPackages: string[];
|
|
2179
2417
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
2180
2418
|
error(): string;
|
|
@@ -2186,6 +2424,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2186
2424
|
readonly standaloneComponents: string[];
|
|
2187
2425
|
readonly parameterized: string[];
|
|
2188
2426
|
readonly ignoreMaterialized: string[];
|
|
2427
|
+
readonly ignoreGenerics: string[];
|
|
2189
2428
|
readonly builderClasses: string[];
|
|
2190
2429
|
readonly forceMaterialized: string[];
|
|
2191
2430
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2193,15 +2432,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2193
2432
|
readonly forceContext: string[];
|
|
2194
2433
|
readonly hooks: Map<string, Map<string, {
|
|
2195
2434
|
readonly hookName: string;
|
|
2435
|
+
readonly replaceImplementation: boolean;
|
|
2196
2436
|
}>>;
|
|
2197
|
-
readonly externalTypes: Map<string, string>;
|
|
2198
|
-
readonly externalPackages: string[];
|
|
2199
2437
|
readonly moduleName: string;
|
|
2200
2438
|
readonly modules: Map<string, {
|
|
2201
2439
|
readonly name: string;
|
|
2440
|
+
readonly external: boolean | undefined;
|
|
2202
2441
|
readonly packages: string[];
|
|
2203
2442
|
readonly useFoldersLayout: boolean | undefined;
|
|
2204
2443
|
}>;
|
|
2444
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2205
2445
|
readonly globalPackages: string[];
|
|
2206
2446
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
2207
2447
|
or<U_6>(x: U_6): {
|
|
@@ -2213,6 +2453,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2213
2453
|
readonly standaloneComponents: string[];
|
|
2214
2454
|
readonly parameterized: string[];
|
|
2215
2455
|
readonly ignoreMaterialized: string[];
|
|
2456
|
+
readonly ignoreGenerics: string[];
|
|
2216
2457
|
readonly builderClasses: string[];
|
|
2217
2458
|
readonly forceMaterialized: string[];
|
|
2218
2459
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2220,15 +2461,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2220
2461
|
readonly forceContext: string[];
|
|
2221
2462
|
readonly hooks: Map<string, Map<string, {
|
|
2222
2463
|
readonly hookName: string;
|
|
2464
|
+
readonly replaceImplementation: boolean;
|
|
2223
2465
|
}>>;
|
|
2224
|
-
readonly externalTypes: Map<string, string>;
|
|
2225
|
-
readonly externalPackages: string[];
|
|
2226
2466
|
readonly moduleName: string;
|
|
2227
2467
|
readonly modules: Map<string, {
|
|
2228
2468
|
readonly name: string;
|
|
2469
|
+
readonly external: boolean | undefined;
|
|
2229
2470
|
readonly packages: string[];
|
|
2230
2471
|
readonly useFoldersLayout: boolean | undefined;
|
|
2231
2472
|
}>;
|
|
2473
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2232
2474
|
readonly globalPackages: string[];
|
|
2233
2475
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
2234
2476
|
success(): boolean;
|
|
@@ -2240,6 +2482,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2240
2482
|
readonly standaloneComponents: string[];
|
|
2241
2483
|
readonly parameterized: string[];
|
|
2242
2484
|
readonly ignoreMaterialized: string[];
|
|
2485
|
+
readonly ignoreGenerics: string[];
|
|
2243
2486
|
readonly builderClasses: string[];
|
|
2244
2487
|
readonly forceMaterialized: string[];
|
|
2245
2488
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2247,15 +2490,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2247
2490
|
readonly forceContext: string[];
|
|
2248
2491
|
readonly hooks: Map<string, Map<string, {
|
|
2249
2492
|
readonly hookName: string;
|
|
2493
|
+
readonly replaceImplementation: boolean;
|
|
2250
2494
|
}>>;
|
|
2251
|
-
readonly externalTypes: Map<string, string>;
|
|
2252
|
-
readonly externalPackages: string[];
|
|
2253
2495
|
readonly moduleName: string;
|
|
2254
2496
|
readonly modules: Map<string, {
|
|
2255
2497
|
readonly name: string;
|
|
2498
|
+
readonly external: boolean | undefined;
|
|
2256
2499
|
readonly packages: string[];
|
|
2257
2500
|
readonly useFoldersLayout: boolean | undefined;
|
|
2258
2501
|
}>;
|
|
2502
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2259
2503
|
readonly globalPackages: string[];
|
|
2260
2504
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
2261
2505
|
error(): string;
|
|
@@ -2267,6 +2511,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2267
2511
|
readonly standaloneComponents: string[];
|
|
2268
2512
|
readonly parameterized: string[];
|
|
2269
2513
|
readonly ignoreMaterialized: string[];
|
|
2514
|
+
readonly ignoreGenerics: string[];
|
|
2270
2515
|
readonly builderClasses: string[];
|
|
2271
2516
|
readonly forceMaterialized: string[];
|
|
2272
2517
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2274,15 +2519,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2274
2519
|
readonly forceContext: string[];
|
|
2275
2520
|
readonly hooks: Map<string, Map<string, {
|
|
2276
2521
|
readonly hookName: string;
|
|
2522
|
+
readonly replaceImplementation: boolean;
|
|
2277
2523
|
}>>;
|
|
2278
|
-
readonly externalTypes: Map<string, string>;
|
|
2279
|
-
readonly externalPackages: string[];
|
|
2280
2524
|
readonly moduleName: string;
|
|
2281
2525
|
readonly modules: Map<string, {
|
|
2282
2526
|
readonly name: string;
|
|
2527
|
+
readonly external: boolean | undefined;
|
|
2283
2528
|
readonly packages: string[];
|
|
2284
2529
|
readonly useFoldersLayout: boolean | undefined;
|
|
2285
2530
|
}>;
|
|
2531
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2286
2532
|
readonly globalPackages: string[];
|
|
2287
2533
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
2288
2534
|
or<U_7>(x: U_7): {
|
|
@@ -2294,6 +2540,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2294
2540
|
readonly standaloneComponents: string[];
|
|
2295
2541
|
readonly parameterized: string[];
|
|
2296
2542
|
readonly ignoreMaterialized: string[];
|
|
2543
|
+
readonly ignoreGenerics: string[];
|
|
2297
2544
|
readonly builderClasses: string[];
|
|
2298
2545
|
readonly forceMaterialized: string[];
|
|
2299
2546
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2301,15 +2548,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2301
2548
|
readonly forceContext: string[];
|
|
2302
2549
|
readonly hooks: Map<string, Map<string, {
|
|
2303
2550
|
readonly hookName: string;
|
|
2551
|
+
readonly replaceImplementation: boolean;
|
|
2304
2552
|
}>>;
|
|
2305
|
-
readonly externalTypes: Map<string, string>;
|
|
2306
|
-
readonly externalPackages: string[];
|
|
2307
2553
|
readonly moduleName: string;
|
|
2308
2554
|
readonly modules: Map<string, {
|
|
2309
2555
|
readonly name: string;
|
|
2556
|
+
readonly external: boolean | undefined;
|
|
2310
2557
|
readonly packages: string[];
|
|
2311
2558
|
readonly useFoldersLayout: boolean | undefined;
|
|
2312
2559
|
}>;
|
|
2560
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2313
2561
|
readonly globalPackages: string[];
|
|
2314
2562
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
2315
2563
|
success(): boolean;
|
|
@@ -2321,6 +2569,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2321
2569
|
readonly standaloneComponents: string[];
|
|
2322
2570
|
readonly parameterized: string[];
|
|
2323
2571
|
readonly ignoreMaterialized: string[];
|
|
2572
|
+
readonly ignoreGenerics: string[];
|
|
2324
2573
|
readonly builderClasses: string[];
|
|
2325
2574
|
readonly forceMaterialized: string[];
|
|
2326
2575
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2328,15 +2577,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2328
2577
|
readonly forceContext: string[];
|
|
2329
2578
|
readonly hooks: Map<string, Map<string, {
|
|
2330
2579
|
readonly hookName: string;
|
|
2580
|
+
readonly replaceImplementation: boolean;
|
|
2331
2581
|
}>>;
|
|
2332
|
-
readonly externalTypes: Map<string, string>;
|
|
2333
|
-
readonly externalPackages: string[];
|
|
2334
2582
|
readonly moduleName: string;
|
|
2335
2583
|
readonly modules: Map<string, {
|
|
2336
2584
|
readonly name: string;
|
|
2585
|
+
readonly external: boolean | undefined;
|
|
2337
2586
|
readonly packages: string[];
|
|
2338
2587
|
readonly useFoldersLayout: boolean | undefined;
|
|
2339
2588
|
}>;
|
|
2589
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2340
2590
|
readonly globalPackages: string[];
|
|
2341
2591
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
2342
2592
|
error(): string;
|
|
@@ -2348,6 +2598,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2348
2598
|
readonly standaloneComponents: string[];
|
|
2349
2599
|
readonly parameterized: string[];
|
|
2350
2600
|
readonly ignoreMaterialized: string[];
|
|
2601
|
+
readonly ignoreGenerics: string[];
|
|
2351
2602
|
readonly builderClasses: string[];
|
|
2352
2603
|
readonly forceMaterialized: string[];
|
|
2353
2604
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2355,15 +2606,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2355
2606
|
readonly forceContext: string[];
|
|
2356
2607
|
readonly hooks: Map<string, Map<string, {
|
|
2357
2608
|
readonly hookName: string;
|
|
2609
|
+
readonly replaceImplementation: boolean;
|
|
2358
2610
|
}>>;
|
|
2359
|
-
readonly externalTypes: Map<string, string>;
|
|
2360
|
-
readonly externalPackages: string[];
|
|
2361
2611
|
readonly moduleName: string;
|
|
2362
2612
|
readonly modules: Map<string, {
|
|
2363
2613
|
readonly name: string;
|
|
2614
|
+
readonly external: boolean | undefined;
|
|
2364
2615
|
readonly packages: string[];
|
|
2365
2616
|
readonly useFoldersLayout: boolean | undefined;
|
|
2366
2617
|
}>;
|
|
2618
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2367
2619
|
readonly globalPackages: string[];
|
|
2368
2620
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
2369
2621
|
or<U_8>(x: U_8): {
|
|
@@ -2375,6 +2627,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2375
2627
|
readonly standaloneComponents: string[];
|
|
2376
2628
|
readonly parameterized: string[];
|
|
2377
2629
|
readonly ignoreMaterialized: string[];
|
|
2630
|
+
readonly ignoreGenerics: string[];
|
|
2378
2631
|
readonly builderClasses: string[];
|
|
2379
2632
|
readonly forceMaterialized: string[];
|
|
2380
2633
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2382,15 +2635,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2382
2635
|
readonly forceContext: string[];
|
|
2383
2636
|
readonly hooks: Map<string, Map<string, {
|
|
2384
2637
|
readonly hookName: string;
|
|
2638
|
+
readonly replaceImplementation: boolean;
|
|
2385
2639
|
}>>;
|
|
2386
|
-
readonly externalTypes: Map<string, string>;
|
|
2387
|
-
readonly externalPackages: string[];
|
|
2388
2640
|
readonly moduleName: string;
|
|
2389
2641
|
readonly modules: Map<string, {
|
|
2390
2642
|
readonly name: string;
|
|
2643
|
+
readonly external: boolean | undefined;
|
|
2391
2644
|
readonly packages: string[];
|
|
2392
2645
|
readonly useFoldersLayout: boolean | undefined;
|
|
2393
2646
|
}>;
|
|
2647
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2394
2648
|
readonly globalPackages: string[];
|
|
2395
2649
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
2396
2650
|
success(): boolean;
|
|
@@ -2402,6 +2656,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2402
2656
|
readonly standaloneComponents: string[];
|
|
2403
2657
|
readonly parameterized: string[];
|
|
2404
2658
|
readonly ignoreMaterialized: string[];
|
|
2659
|
+
readonly ignoreGenerics: string[];
|
|
2405
2660
|
readonly builderClasses: string[];
|
|
2406
2661
|
readonly forceMaterialized: string[];
|
|
2407
2662
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2409,15 +2664,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2409
2664
|
readonly forceContext: string[];
|
|
2410
2665
|
readonly hooks: Map<string, Map<string, {
|
|
2411
2666
|
readonly hookName: string;
|
|
2667
|
+
readonly replaceImplementation: boolean;
|
|
2412
2668
|
}>>;
|
|
2413
|
-
readonly externalTypes: Map<string, string>;
|
|
2414
|
-
readonly externalPackages: string[];
|
|
2415
2669
|
readonly moduleName: string;
|
|
2416
2670
|
readonly modules: Map<string, {
|
|
2417
2671
|
readonly name: string;
|
|
2672
|
+
readonly external: boolean | undefined;
|
|
2418
2673
|
readonly packages: string[];
|
|
2419
2674
|
readonly useFoldersLayout: boolean | undefined;
|
|
2420
2675
|
}>;
|
|
2676
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2421
2677
|
readonly globalPackages: string[];
|
|
2422
2678
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
2423
2679
|
error(): string;
|
|
@@ -2429,6 +2685,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2429
2685
|
readonly standaloneComponents: string[];
|
|
2430
2686
|
readonly parameterized: string[];
|
|
2431
2687
|
readonly ignoreMaterialized: string[];
|
|
2688
|
+
readonly ignoreGenerics: string[];
|
|
2432
2689
|
readonly builderClasses: string[];
|
|
2433
2690
|
readonly forceMaterialized: string[];
|
|
2434
2691
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2436,15 +2693,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2436
2693
|
readonly forceContext: string[];
|
|
2437
2694
|
readonly hooks: Map<string, Map<string, {
|
|
2438
2695
|
readonly hookName: string;
|
|
2696
|
+
readonly replaceImplementation: boolean;
|
|
2439
2697
|
}>>;
|
|
2440
|
-
readonly externalTypes: Map<string, string>;
|
|
2441
|
-
readonly externalPackages: string[];
|
|
2442
2698
|
readonly moduleName: string;
|
|
2443
2699
|
readonly modules: Map<string, {
|
|
2444
2700
|
readonly name: string;
|
|
2701
|
+
readonly external: boolean | undefined;
|
|
2445
2702
|
readonly packages: string[];
|
|
2446
2703
|
readonly useFoldersLayout: boolean | undefined;
|
|
2447
2704
|
}>;
|
|
2705
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2448
2706
|
readonly globalPackages: string[];
|
|
2449
2707
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
2450
2708
|
or<U_9>(x: U_9): {
|
|
@@ -2456,6 +2714,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2456
2714
|
readonly standaloneComponents: string[];
|
|
2457
2715
|
readonly parameterized: string[];
|
|
2458
2716
|
readonly ignoreMaterialized: string[];
|
|
2717
|
+
readonly ignoreGenerics: string[];
|
|
2459
2718
|
readonly builderClasses: string[];
|
|
2460
2719
|
readonly forceMaterialized: string[];
|
|
2461
2720
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2463,15 +2722,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2463
2722
|
readonly forceContext: string[];
|
|
2464
2723
|
readonly hooks: Map<string, Map<string, {
|
|
2465
2724
|
readonly hookName: string;
|
|
2725
|
+
readonly replaceImplementation: boolean;
|
|
2466
2726
|
}>>;
|
|
2467
|
-
readonly externalTypes: Map<string, string>;
|
|
2468
|
-
readonly externalPackages: string[];
|
|
2469
2727
|
readonly moduleName: string;
|
|
2470
2728
|
readonly modules: Map<string, {
|
|
2471
2729
|
readonly name: string;
|
|
2730
|
+
readonly external: boolean | undefined;
|
|
2472
2731
|
readonly packages: string[];
|
|
2473
2732
|
readonly useFoldersLayout: boolean | undefined;
|
|
2474
2733
|
}>;
|
|
2734
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2475
2735
|
readonly globalPackages: string[];
|
|
2476
2736
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
2477
2737
|
success(): boolean;
|
|
@@ -2483,6 +2743,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2483
2743
|
readonly standaloneComponents: string[];
|
|
2484
2744
|
readonly parameterized: string[];
|
|
2485
2745
|
readonly ignoreMaterialized: string[];
|
|
2746
|
+
readonly ignoreGenerics: string[];
|
|
2486
2747
|
readonly builderClasses: string[];
|
|
2487
2748
|
readonly forceMaterialized: string[];
|
|
2488
2749
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2490,15 +2751,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2490
2751
|
readonly forceContext: string[];
|
|
2491
2752
|
readonly hooks: Map<string, Map<string, {
|
|
2492
2753
|
readonly hookName: string;
|
|
2754
|
+
readonly replaceImplementation: boolean;
|
|
2493
2755
|
}>>;
|
|
2494
|
-
readonly externalTypes: Map<string, string>;
|
|
2495
|
-
readonly externalPackages: string[];
|
|
2496
2756
|
readonly moduleName: string;
|
|
2497
2757
|
readonly modules: Map<string, {
|
|
2498
2758
|
readonly name: string;
|
|
2759
|
+
readonly external: boolean | undefined;
|
|
2499
2760
|
readonly packages: string[];
|
|
2500
2761
|
readonly useFoldersLayout: boolean | undefined;
|
|
2501
2762
|
}>;
|
|
2763
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2502
2764
|
readonly globalPackages: string[];
|
|
2503
2765
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
2504
2766
|
error(): string;
|
|
@@ -2510,6 +2772,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2510
2772
|
readonly standaloneComponents: string[];
|
|
2511
2773
|
readonly parameterized: string[];
|
|
2512
2774
|
readonly ignoreMaterialized: string[];
|
|
2775
|
+
readonly ignoreGenerics: string[];
|
|
2513
2776
|
readonly builderClasses: string[];
|
|
2514
2777
|
readonly forceMaterialized: string[];
|
|
2515
2778
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2517,15 +2780,16 @@ export declare const CoreConfigurationSchema: {
|
|
|
2517
2780
|
readonly forceContext: string[];
|
|
2518
2781
|
readonly hooks: Map<string, Map<string, {
|
|
2519
2782
|
readonly hookName: string;
|
|
2783
|
+
readonly replaceImplementation: boolean;
|
|
2520
2784
|
}>>;
|
|
2521
|
-
readonly externalTypes: Map<string, string>;
|
|
2522
|
-
readonly externalPackages: string[];
|
|
2523
2785
|
readonly moduleName: string;
|
|
2524
2786
|
readonly modules: Map<string, {
|
|
2525
2787
|
readonly name: string;
|
|
2788
|
+
readonly external: boolean | undefined;
|
|
2526
2789
|
readonly packages: string[];
|
|
2527
2790
|
readonly useFoldersLayout: boolean | undefined;
|
|
2528
2791
|
}>;
|
|
2792
|
+
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2529
2793
|
readonly globalPackages: string[];
|
|
2530
2794
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
2531
2795
|
or<U_10>(x: U_10): any;
|
|
@@ -2550,5 +2814,10 @@ export declare function setDefaultConfiguration<T extends CoreConfiguration>(con
|
|
|
2550
2814
|
export declare function patchDefaultConfiguration<T extends CoreConfiguration>(config: Partial<T>): void;
|
|
2551
2815
|
export declare function generatorConfiguration<T extends CoreConfiguration>(): T;
|
|
2552
2816
|
export declare function generatorTypePrefix(): string;
|
|
2553
|
-
|
|
2817
|
+
interface HookMethod {
|
|
2818
|
+
hookName: string;
|
|
2819
|
+
replaceImplementation: boolean;
|
|
2820
|
+
}
|
|
2821
|
+
export declare function getHookMethod(className: string, methodName: string): HookMethod | undefined;
|
|
2822
|
+
export {};
|
|
2554
2823
|
//# sourceMappingURL=config.d.ts.map
|