@idlizer/core 2.1.9-arktscgen-5 → 2.1.9-arktscgen-8
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/Language.d.ts +0 -1
- package/build/lib/src/Language.js +7 -8
- package/build/lib/src/LanguageWriters/ArgConvertors.d.ts +4 -15
- package/build/lib/src/LanguageWriters/ArgConvertors.js +103 -102
- package/build/lib/src/LanguageWriters/LanguageWriter.d.ts +8 -30
- package/build/lib/src/LanguageWriters/LanguageWriter.js +15 -67
- 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 +1 -2
- package/build/lib/src/LanguageWriters/writers/CJLanguageWriter.js +3 -19
- 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 +3 -5
- package/build/lib/src/LanguageWriters/writers/CppLanguageWriter.js +9 -22
- package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.d.ts +6 -9
- package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.js +23 -66
- package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.d.ts +1 -7
- package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.js +4 -14
- package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.d.ts +11 -8
- package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.js +116 -27
- package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.d.ts +4 -5
- package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.js +10 -26
- package/build/lib/src/config.d.ts +336 -1
- package/build/lib/src/config.js +11 -3
- 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 +7 -0
- package/build/lib/src/idl.js +15 -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 +4 -20
- package/build/lib/src/peer-generation/Materialized.js +9 -62
- package/build/lib/src/peer-generation/PeerClass.d.ts +0 -2
- package/build/lib/src/peer-generation/PeerClass.js +4 -6
- package/build/lib/src/peer-generation/PeerLibrary.js +1 -5
- package/build/lib/src/peer-generation/PeerMethod.d.ts +25 -27
- package/build/lib/src/peer-generation/PeerMethod.js +83 -93
- 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 +4 -0
- 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 +4 -2
- package/build/lib/src/util.js +21 -12
- package/package.json +2 -2
|
@@ -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,12 +879,14 @@ 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
884
|
readonly externalTypes: Map<string, string>;
|
|
751
885
|
readonly externalPackages: string[];
|
|
752
886
|
readonly moduleName: string;
|
|
753
887
|
readonly modules: Map<string, {
|
|
754
888
|
readonly name: string;
|
|
889
|
+
readonly external: boolean | undefined;
|
|
755
890
|
readonly packages: string[];
|
|
756
891
|
readonly useFoldersLayout: boolean | undefined;
|
|
757
892
|
}>;
|
|
@@ -766,6 +901,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
766
901
|
readonly standaloneComponents: string[];
|
|
767
902
|
readonly parameterized: string[];
|
|
768
903
|
readonly ignoreMaterialized: string[];
|
|
904
|
+
readonly ignoreGenerics: string[];
|
|
769
905
|
readonly builderClasses: string[];
|
|
770
906
|
readonly forceMaterialized: string[];
|
|
771
907
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -773,12 +909,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
773
909
|
readonly forceContext: string[];
|
|
774
910
|
readonly hooks: Map<string, Map<string, {
|
|
775
911
|
readonly hookName: string;
|
|
912
|
+
readonly replaceImplementation: boolean;
|
|
776
913
|
}>>;
|
|
777
914
|
readonly externalTypes: Map<string, string>;
|
|
778
915
|
readonly externalPackages: string[];
|
|
779
916
|
readonly moduleName: string;
|
|
780
917
|
readonly modules: Map<string, {
|
|
781
918
|
readonly name: string;
|
|
919
|
+
readonly external: boolean | undefined;
|
|
782
920
|
readonly packages: string[];
|
|
783
921
|
readonly useFoldersLayout: boolean | undefined;
|
|
784
922
|
}>;
|
|
@@ -793,6 +931,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
793
931
|
readonly standaloneComponents: string[];
|
|
794
932
|
readonly parameterized: string[];
|
|
795
933
|
readonly ignoreMaterialized: string[];
|
|
934
|
+
readonly ignoreGenerics: string[];
|
|
796
935
|
readonly builderClasses: string[];
|
|
797
936
|
readonly forceMaterialized: string[];
|
|
798
937
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -800,12 +939,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
800
939
|
readonly forceContext: string[];
|
|
801
940
|
readonly hooks: Map<string, Map<string, {
|
|
802
941
|
readonly hookName: string;
|
|
942
|
+
readonly replaceImplementation: boolean;
|
|
803
943
|
}>>;
|
|
804
944
|
readonly externalTypes: Map<string, string>;
|
|
805
945
|
readonly externalPackages: string[];
|
|
806
946
|
readonly moduleName: string;
|
|
807
947
|
readonly modules: Map<string, {
|
|
808
948
|
readonly name: string;
|
|
949
|
+
readonly external: boolean | undefined;
|
|
809
950
|
readonly packages: string[];
|
|
810
951
|
readonly useFoldersLayout: boolean | undefined;
|
|
811
952
|
}>;
|
|
@@ -820,6 +961,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
820
961
|
readonly standaloneComponents: string[];
|
|
821
962
|
readonly parameterized: string[];
|
|
822
963
|
readonly ignoreMaterialized: string[];
|
|
964
|
+
readonly ignoreGenerics: string[];
|
|
823
965
|
readonly builderClasses: string[];
|
|
824
966
|
readonly forceMaterialized: string[];
|
|
825
967
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -827,12 +969,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
827
969
|
readonly forceContext: string[];
|
|
828
970
|
readonly hooks: Map<string, Map<string, {
|
|
829
971
|
readonly hookName: string;
|
|
972
|
+
readonly replaceImplementation: boolean;
|
|
830
973
|
}>>;
|
|
831
974
|
readonly externalTypes: Map<string, string>;
|
|
832
975
|
readonly externalPackages: string[];
|
|
833
976
|
readonly moduleName: string;
|
|
834
977
|
readonly modules: Map<string, {
|
|
835
978
|
readonly name: string;
|
|
979
|
+
readonly external: boolean | undefined;
|
|
836
980
|
readonly packages: string[];
|
|
837
981
|
readonly useFoldersLayout: boolean | undefined;
|
|
838
982
|
}>;
|
|
@@ -847,6 +991,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
847
991
|
readonly standaloneComponents: string[];
|
|
848
992
|
readonly parameterized: string[];
|
|
849
993
|
readonly ignoreMaterialized: string[];
|
|
994
|
+
readonly ignoreGenerics: string[];
|
|
850
995
|
readonly builderClasses: string[];
|
|
851
996
|
readonly forceMaterialized: string[];
|
|
852
997
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -854,12 +999,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
854
999
|
readonly forceContext: string[];
|
|
855
1000
|
readonly hooks: Map<string, Map<string, {
|
|
856
1001
|
readonly hookName: string;
|
|
1002
|
+
readonly replaceImplementation: boolean;
|
|
857
1003
|
}>>;
|
|
858
1004
|
readonly externalTypes: Map<string, string>;
|
|
859
1005
|
readonly externalPackages: string[];
|
|
860
1006
|
readonly moduleName: string;
|
|
861
1007
|
readonly modules: Map<string, {
|
|
862
1008
|
readonly name: string;
|
|
1009
|
+
readonly external: boolean | undefined;
|
|
863
1010
|
readonly packages: string[];
|
|
864
1011
|
readonly useFoldersLayout: boolean | undefined;
|
|
865
1012
|
}>;
|
|
@@ -874,6 +1021,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
874
1021
|
readonly standaloneComponents: string[];
|
|
875
1022
|
readonly parameterized: string[];
|
|
876
1023
|
readonly ignoreMaterialized: string[];
|
|
1024
|
+
readonly ignoreGenerics: string[];
|
|
877
1025
|
readonly builderClasses: string[];
|
|
878
1026
|
readonly forceMaterialized: string[];
|
|
879
1027
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -881,12 +1029,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
881
1029
|
readonly forceContext: string[];
|
|
882
1030
|
readonly hooks: Map<string, Map<string, {
|
|
883
1031
|
readonly hookName: string;
|
|
1032
|
+
readonly replaceImplementation: boolean;
|
|
884
1033
|
}>>;
|
|
885
1034
|
readonly externalTypes: Map<string, string>;
|
|
886
1035
|
readonly externalPackages: string[];
|
|
887
1036
|
readonly moduleName: string;
|
|
888
1037
|
readonly modules: Map<string, {
|
|
889
1038
|
readonly name: string;
|
|
1039
|
+
readonly external: boolean | undefined;
|
|
890
1040
|
readonly packages: string[];
|
|
891
1041
|
readonly useFoldersLayout: boolean | undefined;
|
|
892
1042
|
}>;
|
|
@@ -901,6 +1051,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
901
1051
|
readonly standaloneComponents: string[];
|
|
902
1052
|
readonly parameterized: string[];
|
|
903
1053
|
readonly ignoreMaterialized: string[];
|
|
1054
|
+
readonly ignoreGenerics: string[];
|
|
904
1055
|
readonly builderClasses: string[];
|
|
905
1056
|
readonly forceMaterialized: string[];
|
|
906
1057
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -908,12 +1059,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
908
1059
|
readonly forceContext: string[];
|
|
909
1060
|
readonly hooks: Map<string, Map<string, {
|
|
910
1061
|
readonly hookName: string;
|
|
1062
|
+
readonly replaceImplementation: boolean;
|
|
911
1063
|
}>>;
|
|
912
1064
|
readonly externalTypes: Map<string, string>;
|
|
913
1065
|
readonly externalPackages: string[];
|
|
914
1066
|
readonly moduleName: string;
|
|
915
1067
|
readonly modules: Map<string, {
|
|
916
1068
|
readonly name: string;
|
|
1069
|
+
readonly external: boolean | undefined;
|
|
917
1070
|
readonly packages: string[];
|
|
918
1071
|
readonly useFoldersLayout: boolean | undefined;
|
|
919
1072
|
}>;
|
|
@@ -928,6 +1081,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
928
1081
|
readonly standaloneComponents: string[];
|
|
929
1082
|
readonly parameterized: string[];
|
|
930
1083
|
readonly ignoreMaterialized: string[];
|
|
1084
|
+
readonly ignoreGenerics: string[];
|
|
931
1085
|
readonly builderClasses: string[];
|
|
932
1086
|
readonly forceMaterialized: string[];
|
|
933
1087
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -935,12 +1089,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
935
1089
|
readonly forceContext: string[];
|
|
936
1090
|
readonly hooks: Map<string, Map<string, {
|
|
937
1091
|
readonly hookName: string;
|
|
1092
|
+
readonly replaceImplementation: boolean;
|
|
938
1093
|
}>>;
|
|
939
1094
|
readonly externalTypes: Map<string, string>;
|
|
940
1095
|
readonly externalPackages: string[];
|
|
941
1096
|
readonly moduleName: string;
|
|
942
1097
|
readonly modules: Map<string, {
|
|
943
1098
|
readonly name: string;
|
|
1099
|
+
readonly external: boolean | undefined;
|
|
944
1100
|
readonly packages: string[];
|
|
945
1101
|
readonly useFoldersLayout: boolean | undefined;
|
|
946
1102
|
}>;
|
|
@@ -955,6 +1111,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
955
1111
|
readonly standaloneComponents: string[];
|
|
956
1112
|
readonly parameterized: string[];
|
|
957
1113
|
readonly ignoreMaterialized: string[];
|
|
1114
|
+
readonly ignoreGenerics: string[];
|
|
958
1115
|
readonly builderClasses: string[];
|
|
959
1116
|
readonly forceMaterialized: string[];
|
|
960
1117
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -962,12 +1119,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
962
1119
|
readonly forceContext: string[];
|
|
963
1120
|
readonly hooks: Map<string, Map<string, {
|
|
964
1121
|
readonly hookName: string;
|
|
1122
|
+
readonly replaceImplementation: boolean;
|
|
965
1123
|
}>>;
|
|
966
1124
|
readonly externalTypes: Map<string, string>;
|
|
967
1125
|
readonly externalPackages: string[];
|
|
968
1126
|
readonly moduleName: string;
|
|
969
1127
|
readonly modules: Map<string, {
|
|
970
1128
|
readonly name: string;
|
|
1129
|
+
readonly external: boolean | undefined;
|
|
971
1130
|
readonly packages: string[];
|
|
972
1131
|
readonly useFoldersLayout: boolean | undefined;
|
|
973
1132
|
}>;
|
|
@@ -982,6 +1141,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
982
1141
|
readonly standaloneComponents: string[];
|
|
983
1142
|
readonly parameterized: string[];
|
|
984
1143
|
readonly ignoreMaterialized: string[];
|
|
1144
|
+
readonly ignoreGenerics: string[];
|
|
985
1145
|
readonly builderClasses: string[];
|
|
986
1146
|
readonly forceMaterialized: string[];
|
|
987
1147
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -989,12 +1149,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
989
1149
|
readonly forceContext: string[];
|
|
990
1150
|
readonly hooks: Map<string, Map<string, {
|
|
991
1151
|
readonly hookName: string;
|
|
1152
|
+
readonly replaceImplementation: boolean;
|
|
992
1153
|
}>>;
|
|
993
1154
|
readonly externalTypes: Map<string, string>;
|
|
994
1155
|
readonly externalPackages: string[];
|
|
995
1156
|
readonly moduleName: string;
|
|
996
1157
|
readonly modules: Map<string, {
|
|
997
1158
|
readonly name: string;
|
|
1159
|
+
readonly external: boolean | undefined;
|
|
998
1160
|
readonly packages: string[];
|
|
999
1161
|
readonly useFoldersLayout: boolean | undefined;
|
|
1000
1162
|
}>;
|
|
@@ -1009,6 +1171,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1009
1171
|
readonly standaloneComponents: string[];
|
|
1010
1172
|
readonly parameterized: string[];
|
|
1011
1173
|
readonly ignoreMaterialized: string[];
|
|
1174
|
+
readonly ignoreGenerics: string[];
|
|
1012
1175
|
readonly builderClasses: string[];
|
|
1013
1176
|
readonly forceMaterialized: string[];
|
|
1014
1177
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1016,12 +1179,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1016
1179
|
readonly forceContext: string[];
|
|
1017
1180
|
readonly hooks: Map<string, Map<string, {
|
|
1018
1181
|
readonly hookName: string;
|
|
1182
|
+
readonly replaceImplementation: boolean;
|
|
1019
1183
|
}>>;
|
|
1020
1184
|
readonly externalTypes: Map<string, string>;
|
|
1021
1185
|
readonly externalPackages: string[];
|
|
1022
1186
|
readonly moduleName: string;
|
|
1023
1187
|
readonly modules: Map<string, {
|
|
1024
1188
|
readonly name: string;
|
|
1189
|
+
readonly external: boolean | undefined;
|
|
1025
1190
|
readonly packages: string[];
|
|
1026
1191
|
readonly useFoldersLayout: boolean | undefined;
|
|
1027
1192
|
}>;
|
|
@@ -1036,6 +1201,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1036
1201
|
readonly standaloneComponents: string[];
|
|
1037
1202
|
readonly parameterized: string[];
|
|
1038
1203
|
readonly ignoreMaterialized: string[];
|
|
1204
|
+
readonly ignoreGenerics: string[];
|
|
1039
1205
|
readonly builderClasses: string[];
|
|
1040
1206
|
readonly forceMaterialized: string[];
|
|
1041
1207
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1043,12 +1209,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1043
1209
|
readonly forceContext: string[];
|
|
1044
1210
|
readonly hooks: Map<string, Map<string, {
|
|
1045
1211
|
readonly hookName: string;
|
|
1212
|
+
readonly replaceImplementation: boolean;
|
|
1046
1213
|
}>>;
|
|
1047
1214
|
readonly externalTypes: Map<string, string>;
|
|
1048
1215
|
readonly externalPackages: string[];
|
|
1049
1216
|
readonly moduleName: string;
|
|
1050
1217
|
readonly modules: Map<string, {
|
|
1051
1218
|
readonly name: string;
|
|
1219
|
+
readonly external: boolean | undefined;
|
|
1052
1220
|
readonly packages: string[];
|
|
1053
1221
|
readonly useFoldersLayout: boolean | undefined;
|
|
1054
1222
|
}>;
|
|
@@ -1063,6 +1231,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1063
1231
|
readonly standaloneComponents: string[];
|
|
1064
1232
|
readonly parameterized: string[];
|
|
1065
1233
|
readonly ignoreMaterialized: string[];
|
|
1234
|
+
readonly ignoreGenerics: string[];
|
|
1066
1235
|
readonly builderClasses: string[];
|
|
1067
1236
|
readonly forceMaterialized: string[];
|
|
1068
1237
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1070,12 +1239,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1070
1239
|
readonly forceContext: string[];
|
|
1071
1240
|
readonly hooks: Map<string, Map<string, {
|
|
1072
1241
|
readonly hookName: string;
|
|
1242
|
+
readonly replaceImplementation: boolean;
|
|
1073
1243
|
}>>;
|
|
1074
1244
|
readonly externalTypes: Map<string, string>;
|
|
1075
1245
|
readonly externalPackages: string[];
|
|
1076
1246
|
readonly moduleName: string;
|
|
1077
1247
|
readonly modules: Map<string, {
|
|
1078
1248
|
readonly name: string;
|
|
1249
|
+
readonly external: boolean | undefined;
|
|
1079
1250
|
readonly packages: string[];
|
|
1080
1251
|
readonly useFoldersLayout: boolean | undefined;
|
|
1081
1252
|
}>;
|
|
@@ -1090,6 +1261,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1090
1261
|
readonly standaloneComponents: string[];
|
|
1091
1262
|
readonly parameterized: string[];
|
|
1092
1263
|
readonly ignoreMaterialized: string[];
|
|
1264
|
+
readonly ignoreGenerics: string[];
|
|
1093
1265
|
readonly builderClasses: string[];
|
|
1094
1266
|
readonly forceMaterialized: string[];
|
|
1095
1267
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1097,12 +1269,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1097
1269
|
readonly forceContext: string[];
|
|
1098
1270
|
readonly hooks: Map<string, Map<string, {
|
|
1099
1271
|
readonly hookName: string;
|
|
1272
|
+
readonly replaceImplementation: boolean;
|
|
1100
1273
|
}>>;
|
|
1101
1274
|
readonly externalTypes: Map<string, string>;
|
|
1102
1275
|
readonly externalPackages: string[];
|
|
1103
1276
|
readonly moduleName: string;
|
|
1104
1277
|
readonly modules: Map<string, {
|
|
1105
1278
|
readonly name: string;
|
|
1279
|
+
readonly external: boolean | undefined;
|
|
1106
1280
|
readonly packages: string[];
|
|
1107
1281
|
readonly useFoldersLayout: boolean | undefined;
|
|
1108
1282
|
}>;
|
|
@@ -1117,6 +1291,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1117
1291
|
readonly standaloneComponents: string[];
|
|
1118
1292
|
readonly parameterized: string[];
|
|
1119
1293
|
readonly ignoreMaterialized: string[];
|
|
1294
|
+
readonly ignoreGenerics: string[];
|
|
1120
1295
|
readonly builderClasses: string[];
|
|
1121
1296
|
readonly forceMaterialized: string[];
|
|
1122
1297
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1124,12 +1299,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1124
1299
|
readonly forceContext: string[];
|
|
1125
1300
|
readonly hooks: Map<string, Map<string, {
|
|
1126
1301
|
readonly hookName: string;
|
|
1302
|
+
readonly replaceImplementation: boolean;
|
|
1127
1303
|
}>>;
|
|
1128
1304
|
readonly externalTypes: Map<string, string>;
|
|
1129
1305
|
readonly externalPackages: string[];
|
|
1130
1306
|
readonly moduleName: string;
|
|
1131
1307
|
readonly modules: Map<string, {
|
|
1132
1308
|
readonly name: string;
|
|
1309
|
+
readonly external: boolean | undefined;
|
|
1133
1310
|
readonly packages: string[];
|
|
1134
1311
|
readonly useFoldersLayout: boolean | undefined;
|
|
1135
1312
|
}>;
|
|
@@ -1144,6 +1321,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1144
1321
|
readonly standaloneComponents: string[];
|
|
1145
1322
|
readonly parameterized: string[];
|
|
1146
1323
|
readonly ignoreMaterialized: string[];
|
|
1324
|
+
readonly ignoreGenerics: string[];
|
|
1147
1325
|
readonly builderClasses: string[];
|
|
1148
1326
|
readonly forceMaterialized: string[];
|
|
1149
1327
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1151,12 +1329,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1151
1329
|
readonly forceContext: string[];
|
|
1152
1330
|
readonly hooks: Map<string, Map<string, {
|
|
1153
1331
|
readonly hookName: string;
|
|
1332
|
+
readonly replaceImplementation: boolean;
|
|
1154
1333
|
}>>;
|
|
1155
1334
|
readonly externalTypes: Map<string, string>;
|
|
1156
1335
|
readonly externalPackages: string[];
|
|
1157
1336
|
readonly moduleName: string;
|
|
1158
1337
|
readonly modules: Map<string, {
|
|
1159
1338
|
readonly name: string;
|
|
1339
|
+
readonly external: boolean | undefined;
|
|
1160
1340
|
readonly packages: string[];
|
|
1161
1341
|
readonly useFoldersLayout: boolean | undefined;
|
|
1162
1342
|
}>;
|
|
@@ -1171,6 +1351,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1171
1351
|
readonly standaloneComponents: string[];
|
|
1172
1352
|
readonly parameterized: string[];
|
|
1173
1353
|
readonly ignoreMaterialized: string[];
|
|
1354
|
+
readonly ignoreGenerics: string[];
|
|
1174
1355
|
readonly builderClasses: string[];
|
|
1175
1356
|
readonly forceMaterialized: string[];
|
|
1176
1357
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1178,12 +1359,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1178
1359
|
readonly forceContext: string[];
|
|
1179
1360
|
readonly hooks: Map<string, Map<string, {
|
|
1180
1361
|
readonly hookName: string;
|
|
1362
|
+
readonly replaceImplementation: boolean;
|
|
1181
1363
|
}>>;
|
|
1182
1364
|
readonly externalTypes: Map<string, string>;
|
|
1183
1365
|
readonly externalPackages: string[];
|
|
1184
1366
|
readonly moduleName: string;
|
|
1185
1367
|
readonly modules: Map<string, {
|
|
1186
1368
|
readonly name: string;
|
|
1369
|
+
readonly external: boolean | undefined;
|
|
1187
1370
|
readonly packages: string[];
|
|
1188
1371
|
readonly useFoldersLayout: boolean | undefined;
|
|
1189
1372
|
}>;
|
|
@@ -1198,6 +1381,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1198
1381
|
readonly standaloneComponents: string[];
|
|
1199
1382
|
readonly parameterized: string[];
|
|
1200
1383
|
readonly ignoreMaterialized: string[];
|
|
1384
|
+
readonly ignoreGenerics: string[];
|
|
1201
1385
|
readonly builderClasses: string[];
|
|
1202
1386
|
readonly forceMaterialized: string[];
|
|
1203
1387
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1205,12 +1389,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1205
1389
|
readonly forceContext: string[];
|
|
1206
1390
|
readonly hooks: Map<string, Map<string, {
|
|
1207
1391
|
readonly hookName: string;
|
|
1392
|
+
readonly replaceImplementation: boolean;
|
|
1208
1393
|
}>>;
|
|
1209
1394
|
readonly externalTypes: Map<string, string>;
|
|
1210
1395
|
readonly externalPackages: string[];
|
|
1211
1396
|
readonly moduleName: string;
|
|
1212
1397
|
readonly modules: Map<string, {
|
|
1213
1398
|
readonly name: string;
|
|
1399
|
+
readonly external: boolean | undefined;
|
|
1214
1400
|
readonly packages: string[];
|
|
1215
1401
|
readonly useFoldersLayout: boolean | undefined;
|
|
1216
1402
|
}>;
|
|
@@ -1225,6 +1411,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1225
1411
|
readonly standaloneComponents: string[];
|
|
1226
1412
|
readonly parameterized: string[];
|
|
1227
1413
|
readonly ignoreMaterialized: string[];
|
|
1414
|
+
readonly ignoreGenerics: string[];
|
|
1228
1415
|
readonly builderClasses: string[];
|
|
1229
1416
|
readonly forceMaterialized: string[];
|
|
1230
1417
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1232,12 +1419,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1232
1419
|
readonly forceContext: string[];
|
|
1233
1420
|
readonly hooks: Map<string, Map<string, {
|
|
1234
1421
|
readonly hookName: string;
|
|
1422
|
+
readonly replaceImplementation: boolean;
|
|
1235
1423
|
}>>;
|
|
1236
1424
|
readonly externalTypes: Map<string, string>;
|
|
1237
1425
|
readonly externalPackages: string[];
|
|
1238
1426
|
readonly moduleName: string;
|
|
1239
1427
|
readonly modules: Map<string, {
|
|
1240
1428
|
readonly name: string;
|
|
1429
|
+
readonly external: boolean | undefined;
|
|
1241
1430
|
readonly packages: string[];
|
|
1242
1431
|
readonly useFoldersLayout: boolean | undefined;
|
|
1243
1432
|
}>;
|
|
@@ -1252,6 +1441,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1252
1441
|
readonly standaloneComponents: string[];
|
|
1253
1442
|
readonly parameterized: string[];
|
|
1254
1443
|
readonly ignoreMaterialized: string[];
|
|
1444
|
+
readonly ignoreGenerics: string[];
|
|
1255
1445
|
readonly builderClasses: string[];
|
|
1256
1446
|
readonly forceMaterialized: string[];
|
|
1257
1447
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1259,12 +1449,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1259
1449
|
readonly forceContext: string[];
|
|
1260
1450
|
readonly hooks: Map<string, Map<string, {
|
|
1261
1451
|
readonly hookName: string;
|
|
1452
|
+
readonly replaceImplementation: boolean;
|
|
1262
1453
|
}>>;
|
|
1263
1454
|
readonly externalTypes: Map<string, string>;
|
|
1264
1455
|
readonly externalPackages: string[];
|
|
1265
1456
|
readonly moduleName: string;
|
|
1266
1457
|
readonly modules: Map<string, {
|
|
1267
1458
|
readonly name: string;
|
|
1459
|
+
readonly external: boolean | undefined;
|
|
1268
1460
|
readonly packages: string[];
|
|
1269
1461
|
readonly useFoldersLayout: boolean | undefined;
|
|
1270
1462
|
}>;
|
|
@@ -1279,6 +1471,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1279
1471
|
readonly standaloneComponents: string[];
|
|
1280
1472
|
readonly parameterized: string[];
|
|
1281
1473
|
readonly ignoreMaterialized: string[];
|
|
1474
|
+
readonly ignoreGenerics: string[];
|
|
1282
1475
|
readonly builderClasses: string[];
|
|
1283
1476
|
readonly forceMaterialized: string[];
|
|
1284
1477
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1286,12 +1479,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1286
1479
|
readonly forceContext: string[];
|
|
1287
1480
|
readonly hooks: Map<string, Map<string, {
|
|
1288
1481
|
readonly hookName: string;
|
|
1482
|
+
readonly replaceImplementation: boolean;
|
|
1289
1483
|
}>>;
|
|
1290
1484
|
readonly externalTypes: Map<string, string>;
|
|
1291
1485
|
readonly externalPackages: string[];
|
|
1292
1486
|
readonly moduleName: string;
|
|
1293
1487
|
readonly modules: Map<string, {
|
|
1294
1488
|
readonly name: string;
|
|
1489
|
+
readonly external: boolean | undefined;
|
|
1295
1490
|
readonly packages: string[];
|
|
1296
1491
|
readonly useFoldersLayout: boolean | undefined;
|
|
1297
1492
|
}>;
|
|
@@ -1306,6 +1501,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1306
1501
|
readonly standaloneComponents: string[];
|
|
1307
1502
|
readonly parameterized: string[];
|
|
1308
1503
|
readonly ignoreMaterialized: string[];
|
|
1504
|
+
readonly ignoreGenerics: string[];
|
|
1309
1505
|
readonly builderClasses: string[];
|
|
1310
1506
|
readonly forceMaterialized: string[];
|
|
1311
1507
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1313,12 +1509,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1313
1509
|
readonly forceContext: string[];
|
|
1314
1510
|
readonly hooks: Map<string, Map<string, {
|
|
1315
1511
|
readonly hookName: string;
|
|
1512
|
+
readonly replaceImplementation: boolean;
|
|
1316
1513
|
}>>;
|
|
1317
1514
|
readonly externalTypes: Map<string, string>;
|
|
1318
1515
|
readonly externalPackages: string[];
|
|
1319
1516
|
readonly moduleName: string;
|
|
1320
1517
|
readonly modules: Map<string, {
|
|
1321
1518
|
readonly name: string;
|
|
1519
|
+
readonly external: boolean | undefined;
|
|
1322
1520
|
readonly packages: string[];
|
|
1323
1521
|
readonly useFoldersLayout: boolean | undefined;
|
|
1324
1522
|
}>;
|
|
@@ -1333,6 +1531,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1333
1531
|
readonly standaloneComponents: string[];
|
|
1334
1532
|
readonly parameterized: string[];
|
|
1335
1533
|
readonly ignoreMaterialized: string[];
|
|
1534
|
+
readonly ignoreGenerics: string[];
|
|
1336
1535
|
readonly builderClasses: string[];
|
|
1337
1536
|
readonly forceMaterialized: string[];
|
|
1338
1537
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1340,12 +1539,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1340
1539
|
readonly forceContext: string[];
|
|
1341
1540
|
readonly hooks: Map<string, Map<string, {
|
|
1342
1541
|
readonly hookName: string;
|
|
1542
|
+
readonly replaceImplementation: boolean;
|
|
1343
1543
|
}>>;
|
|
1344
1544
|
readonly externalTypes: Map<string, string>;
|
|
1345
1545
|
readonly externalPackages: string[];
|
|
1346
1546
|
readonly moduleName: string;
|
|
1347
1547
|
readonly modules: Map<string, {
|
|
1348
1548
|
readonly name: string;
|
|
1549
|
+
readonly external: boolean | undefined;
|
|
1349
1550
|
readonly packages: string[];
|
|
1350
1551
|
readonly useFoldersLayout: boolean | undefined;
|
|
1351
1552
|
}>;
|
|
@@ -1360,6 +1561,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1360
1561
|
readonly standaloneComponents: string[];
|
|
1361
1562
|
readonly parameterized: string[];
|
|
1362
1563
|
readonly ignoreMaterialized: string[];
|
|
1564
|
+
readonly ignoreGenerics: string[];
|
|
1363
1565
|
readonly builderClasses: string[];
|
|
1364
1566
|
readonly forceMaterialized: string[];
|
|
1365
1567
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1367,12 +1569,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1367
1569
|
readonly forceContext: string[];
|
|
1368
1570
|
readonly hooks: Map<string, Map<string, {
|
|
1369
1571
|
readonly hookName: string;
|
|
1572
|
+
readonly replaceImplementation: boolean;
|
|
1370
1573
|
}>>;
|
|
1371
1574
|
readonly externalTypes: Map<string, string>;
|
|
1372
1575
|
readonly externalPackages: string[];
|
|
1373
1576
|
readonly moduleName: string;
|
|
1374
1577
|
readonly modules: Map<string, {
|
|
1375
1578
|
readonly name: string;
|
|
1579
|
+
readonly external: boolean | undefined;
|
|
1376
1580
|
readonly packages: string[];
|
|
1377
1581
|
readonly useFoldersLayout: boolean | undefined;
|
|
1378
1582
|
}>;
|
|
@@ -1387,6 +1591,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1387
1591
|
readonly standaloneComponents: string[];
|
|
1388
1592
|
readonly parameterized: string[];
|
|
1389
1593
|
readonly ignoreMaterialized: string[];
|
|
1594
|
+
readonly ignoreGenerics: string[];
|
|
1390
1595
|
readonly builderClasses: string[];
|
|
1391
1596
|
readonly forceMaterialized: string[];
|
|
1392
1597
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1394,12 +1599,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1394
1599
|
readonly forceContext: string[];
|
|
1395
1600
|
readonly hooks: Map<string, Map<string, {
|
|
1396
1601
|
readonly hookName: string;
|
|
1602
|
+
readonly replaceImplementation: boolean;
|
|
1397
1603
|
}>>;
|
|
1398
1604
|
readonly externalTypes: Map<string, string>;
|
|
1399
1605
|
readonly externalPackages: string[];
|
|
1400
1606
|
readonly moduleName: string;
|
|
1401
1607
|
readonly modules: Map<string, {
|
|
1402
1608
|
readonly name: string;
|
|
1609
|
+
readonly external: boolean | undefined;
|
|
1403
1610
|
readonly packages: string[];
|
|
1404
1611
|
readonly useFoldersLayout: boolean | undefined;
|
|
1405
1612
|
}>;
|
|
@@ -1414,6 +1621,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1414
1621
|
readonly standaloneComponents: string[];
|
|
1415
1622
|
readonly parameterized: string[];
|
|
1416
1623
|
readonly ignoreMaterialized: string[];
|
|
1624
|
+
readonly ignoreGenerics: string[];
|
|
1417
1625
|
readonly builderClasses: string[];
|
|
1418
1626
|
readonly forceMaterialized: string[];
|
|
1419
1627
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1421,12 +1629,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1421
1629
|
readonly forceContext: string[];
|
|
1422
1630
|
readonly hooks: Map<string, Map<string, {
|
|
1423
1631
|
readonly hookName: string;
|
|
1632
|
+
readonly replaceImplementation: boolean;
|
|
1424
1633
|
}>>;
|
|
1425
1634
|
readonly externalTypes: Map<string, string>;
|
|
1426
1635
|
readonly externalPackages: string[];
|
|
1427
1636
|
readonly moduleName: string;
|
|
1428
1637
|
readonly modules: Map<string, {
|
|
1429
1638
|
readonly name: string;
|
|
1639
|
+
readonly external: boolean | undefined;
|
|
1430
1640
|
readonly packages: string[];
|
|
1431
1641
|
readonly useFoldersLayout: boolean | undefined;
|
|
1432
1642
|
}>;
|
|
@@ -1441,6 +1651,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1441
1651
|
readonly standaloneComponents: string[];
|
|
1442
1652
|
readonly parameterized: string[];
|
|
1443
1653
|
readonly ignoreMaterialized: string[];
|
|
1654
|
+
readonly ignoreGenerics: string[];
|
|
1444
1655
|
readonly builderClasses: string[];
|
|
1445
1656
|
readonly forceMaterialized: string[];
|
|
1446
1657
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1448,12 +1659,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1448
1659
|
readonly forceContext: string[];
|
|
1449
1660
|
readonly hooks: Map<string, Map<string, {
|
|
1450
1661
|
readonly hookName: string;
|
|
1662
|
+
readonly replaceImplementation: boolean;
|
|
1451
1663
|
}>>;
|
|
1452
1664
|
readonly externalTypes: Map<string, string>;
|
|
1453
1665
|
readonly externalPackages: string[];
|
|
1454
1666
|
readonly moduleName: string;
|
|
1455
1667
|
readonly modules: Map<string, {
|
|
1456
1668
|
readonly name: string;
|
|
1669
|
+
readonly external: boolean | undefined;
|
|
1457
1670
|
readonly packages: string[];
|
|
1458
1671
|
readonly useFoldersLayout: boolean | undefined;
|
|
1459
1672
|
}>;
|
|
@@ -1468,6 +1681,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1468
1681
|
readonly standaloneComponents: string[];
|
|
1469
1682
|
readonly parameterized: string[];
|
|
1470
1683
|
readonly ignoreMaterialized: string[];
|
|
1684
|
+
readonly ignoreGenerics: string[];
|
|
1471
1685
|
readonly builderClasses: string[];
|
|
1472
1686
|
readonly forceMaterialized: string[];
|
|
1473
1687
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1475,12 +1689,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1475
1689
|
readonly forceContext: string[];
|
|
1476
1690
|
readonly hooks: Map<string, Map<string, {
|
|
1477
1691
|
readonly hookName: string;
|
|
1692
|
+
readonly replaceImplementation: boolean;
|
|
1478
1693
|
}>>;
|
|
1479
1694
|
readonly externalTypes: Map<string, string>;
|
|
1480
1695
|
readonly externalPackages: string[];
|
|
1481
1696
|
readonly moduleName: string;
|
|
1482
1697
|
readonly modules: Map<string, {
|
|
1483
1698
|
readonly name: string;
|
|
1699
|
+
readonly external: boolean | undefined;
|
|
1484
1700
|
readonly packages: string[];
|
|
1485
1701
|
readonly useFoldersLayout: boolean | undefined;
|
|
1486
1702
|
}>;
|
|
@@ -1495,6 +1711,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1495
1711
|
readonly standaloneComponents: string[];
|
|
1496
1712
|
readonly parameterized: string[];
|
|
1497
1713
|
readonly ignoreMaterialized: string[];
|
|
1714
|
+
readonly ignoreGenerics: string[];
|
|
1498
1715
|
readonly builderClasses: string[];
|
|
1499
1716
|
readonly forceMaterialized: string[];
|
|
1500
1717
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1502,12 +1719,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1502
1719
|
readonly forceContext: string[];
|
|
1503
1720
|
readonly hooks: Map<string, Map<string, {
|
|
1504
1721
|
readonly hookName: string;
|
|
1722
|
+
readonly replaceImplementation: boolean;
|
|
1505
1723
|
}>>;
|
|
1506
1724
|
readonly externalTypes: Map<string, string>;
|
|
1507
1725
|
readonly externalPackages: string[];
|
|
1508
1726
|
readonly moduleName: string;
|
|
1509
1727
|
readonly modules: Map<string, {
|
|
1510
1728
|
readonly name: string;
|
|
1729
|
+
readonly external: boolean | undefined;
|
|
1511
1730
|
readonly packages: string[];
|
|
1512
1731
|
readonly useFoldersLayout: boolean | undefined;
|
|
1513
1732
|
}>;
|
|
@@ -1522,6 +1741,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1522
1741
|
readonly standaloneComponents: string[];
|
|
1523
1742
|
readonly parameterized: string[];
|
|
1524
1743
|
readonly ignoreMaterialized: string[];
|
|
1744
|
+
readonly ignoreGenerics: string[];
|
|
1525
1745
|
readonly builderClasses: string[];
|
|
1526
1746
|
readonly forceMaterialized: string[];
|
|
1527
1747
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1529,12 +1749,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1529
1749
|
readonly forceContext: string[];
|
|
1530
1750
|
readonly hooks: Map<string, Map<string, {
|
|
1531
1751
|
readonly hookName: string;
|
|
1752
|
+
readonly replaceImplementation: boolean;
|
|
1532
1753
|
}>>;
|
|
1533
1754
|
readonly externalTypes: Map<string, string>;
|
|
1534
1755
|
readonly externalPackages: string[];
|
|
1535
1756
|
readonly moduleName: string;
|
|
1536
1757
|
readonly modules: Map<string, {
|
|
1537
1758
|
readonly name: string;
|
|
1759
|
+
readonly external: boolean | undefined;
|
|
1538
1760
|
readonly packages: string[];
|
|
1539
1761
|
readonly useFoldersLayout: boolean | undefined;
|
|
1540
1762
|
}>;
|
|
@@ -1549,6 +1771,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1549
1771
|
readonly standaloneComponents: string[];
|
|
1550
1772
|
readonly parameterized: string[];
|
|
1551
1773
|
readonly ignoreMaterialized: string[];
|
|
1774
|
+
readonly ignoreGenerics: string[];
|
|
1552
1775
|
readonly builderClasses: string[];
|
|
1553
1776
|
readonly forceMaterialized: string[];
|
|
1554
1777
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1556,12 +1779,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1556
1779
|
readonly forceContext: string[];
|
|
1557
1780
|
readonly hooks: Map<string, Map<string, {
|
|
1558
1781
|
readonly hookName: string;
|
|
1782
|
+
readonly replaceImplementation: boolean;
|
|
1559
1783
|
}>>;
|
|
1560
1784
|
readonly externalTypes: Map<string, string>;
|
|
1561
1785
|
readonly externalPackages: string[];
|
|
1562
1786
|
readonly moduleName: string;
|
|
1563
1787
|
readonly modules: Map<string, {
|
|
1564
1788
|
readonly name: string;
|
|
1789
|
+
readonly external: boolean | undefined;
|
|
1565
1790
|
readonly packages: string[];
|
|
1566
1791
|
readonly useFoldersLayout: boolean | undefined;
|
|
1567
1792
|
}>;
|
|
@@ -1576,6 +1801,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1576
1801
|
readonly standaloneComponents: string[];
|
|
1577
1802
|
readonly parameterized: string[];
|
|
1578
1803
|
readonly ignoreMaterialized: string[];
|
|
1804
|
+
readonly ignoreGenerics: string[];
|
|
1579
1805
|
readonly builderClasses: string[];
|
|
1580
1806
|
readonly forceMaterialized: string[];
|
|
1581
1807
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1583,12 +1809,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1583
1809
|
readonly forceContext: string[];
|
|
1584
1810
|
readonly hooks: Map<string, Map<string, {
|
|
1585
1811
|
readonly hookName: string;
|
|
1812
|
+
readonly replaceImplementation: boolean;
|
|
1586
1813
|
}>>;
|
|
1587
1814
|
readonly externalTypes: Map<string, string>;
|
|
1588
1815
|
readonly externalPackages: string[];
|
|
1589
1816
|
readonly moduleName: string;
|
|
1590
1817
|
readonly modules: Map<string, {
|
|
1591
1818
|
readonly name: string;
|
|
1819
|
+
readonly external: boolean | undefined;
|
|
1592
1820
|
readonly packages: string[];
|
|
1593
1821
|
readonly useFoldersLayout: boolean | undefined;
|
|
1594
1822
|
}>;
|
|
@@ -1603,6 +1831,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1603
1831
|
readonly standaloneComponents: string[];
|
|
1604
1832
|
readonly parameterized: string[];
|
|
1605
1833
|
readonly ignoreMaterialized: string[];
|
|
1834
|
+
readonly ignoreGenerics: string[];
|
|
1606
1835
|
readonly builderClasses: string[];
|
|
1607
1836
|
readonly forceMaterialized: string[];
|
|
1608
1837
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1610,12 +1839,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1610
1839
|
readonly forceContext: string[];
|
|
1611
1840
|
readonly hooks: Map<string, Map<string, {
|
|
1612
1841
|
readonly hookName: string;
|
|
1842
|
+
readonly replaceImplementation: boolean;
|
|
1613
1843
|
}>>;
|
|
1614
1844
|
readonly externalTypes: Map<string, string>;
|
|
1615
1845
|
readonly externalPackages: string[];
|
|
1616
1846
|
readonly moduleName: string;
|
|
1617
1847
|
readonly modules: Map<string, {
|
|
1618
1848
|
readonly name: string;
|
|
1849
|
+
readonly external: boolean | undefined;
|
|
1619
1850
|
readonly packages: string[];
|
|
1620
1851
|
readonly useFoldersLayout: boolean | undefined;
|
|
1621
1852
|
}>;
|
|
@@ -1646,6 +1877,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1646
1877
|
readonly standaloneComponents: string[];
|
|
1647
1878
|
readonly parameterized: string[];
|
|
1648
1879
|
readonly ignoreMaterialized: string[];
|
|
1880
|
+
readonly ignoreGenerics: string[];
|
|
1649
1881
|
readonly builderClasses: string[];
|
|
1650
1882
|
readonly forceMaterialized: string[];
|
|
1651
1883
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1653,12 +1885,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1653
1885
|
readonly forceContext: string[];
|
|
1654
1886
|
readonly hooks: Map<string, Map<string, {
|
|
1655
1887
|
readonly hookName: string;
|
|
1888
|
+
readonly replaceImplementation: boolean;
|
|
1656
1889
|
}>>;
|
|
1657
1890
|
readonly externalTypes: Map<string, string>;
|
|
1658
1891
|
readonly externalPackages: string[];
|
|
1659
1892
|
readonly moduleName: string;
|
|
1660
1893
|
readonly modules: Map<string, {
|
|
1661
1894
|
readonly name: string;
|
|
1895
|
+
readonly external: boolean | undefined;
|
|
1662
1896
|
readonly packages: string[];
|
|
1663
1897
|
readonly useFoldersLayout: boolean | undefined;
|
|
1664
1898
|
}>;
|
|
@@ -1673,6 +1907,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1673
1907
|
readonly standaloneComponents: string[];
|
|
1674
1908
|
readonly parameterized: string[];
|
|
1675
1909
|
readonly ignoreMaterialized: string[];
|
|
1910
|
+
readonly ignoreGenerics: string[];
|
|
1676
1911
|
readonly builderClasses: string[];
|
|
1677
1912
|
readonly forceMaterialized: string[];
|
|
1678
1913
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1680,12 +1915,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1680
1915
|
readonly forceContext: string[];
|
|
1681
1916
|
readonly hooks: Map<string, Map<string, {
|
|
1682
1917
|
readonly hookName: string;
|
|
1918
|
+
readonly replaceImplementation: boolean;
|
|
1683
1919
|
}>>;
|
|
1684
1920
|
readonly externalTypes: Map<string, string>;
|
|
1685
1921
|
readonly externalPackages: string[];
|
|
1686
1922
|
readonly moduleName: string;
|
|
1687
1923
|
readonly modules: Map<string, {
|
|
1688
1924
|
readonly name: string;
|
|
1925
|
+
readonly external: boolean | undefined;
|
|
1689
1926
|
readonly packages: string[];
|
|
1690
1927
|
readonly useFoldersLayout: boolean | undefined;
|
|
1691
1928
|
}>;
|
|
@@ -1700,6 +1937,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1700
1937
|
readonly standaloneComponents: string[];
|
|
1701
1938
|
readonly parameterized: string[];
|
|
1702
1939
|
readonly ignoreMaterialized: string[];
|
|
1940
|
+
readonly ignoreGenerics: string[];
|
|
1703
1941
|
readonly builderClasses: string[];
|
|
1704
1942
|
readonly forceMaterialized: string[];
|
|
1705
1943
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1707,12 +1945,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1707
1945
|
readonly forceContext: string[];
|
|
1708
1946
|
readonly hooks: Map<string, Map<string, {
|
|
1709
1947
|
readonly hookName: string;
|
|
1948
|
+
readonly replaceImplementation: boolean;
|
|
1710
1949
|
}>>;
|
|
1711
1950
|
readonly externalTypes: Map<string, string>;
|
|
1712
1951
|
readonly externalPackages: string[];
|
|
1713
1952
|
readonly moduleName: string;
|
|
1714
1953
|
readonly modules: Map<string, {
|
|
1715
1954
|
readonly name: string;
|
|
1955
|
+
readonly external: boolean | undefined;
|
|
1716
1956
|
readonly packages: string[];
|
|
1717
1957
|
readonly useFoldersLayout: boolean | undefined;
|
|
1718
1958
|
}>;
|
|
@@ -1727,6 +1967,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1727
1967
|
readonly standaloneComponents: string[];
|
|
1728
1968
|
readonly parameterized: string[];
|
|
1729
1969
|
readonly ignoreMaterialized: string[];
|
|
1970
|
+
readonly ignoreGenerics: string[];
|
|
1730
1971
|
readonly builderClasses: string[];
|
|
1731
1972
|
readonly forceMaterialized: string[];
|
|
1732
1973
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1734,12 +1975,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1734
1975
|
readonly forceContext: string[];
|
|
1735
1976
|
readonly hooks: Map<string, Map<string, {
|
|
1736
1977
|
readonly hookName: string;
|
|
1978
|
+
readonly replaceImplementation: boolean;
|
|
1737
1979
|
}>>;
|
|
1738
1980
|
readonly externalTypes: Map<string, string>;
|
|
1739
1981
|
readonly externalPackages: string[];
|
|
1740
1982
|
readonly moduleName: string;
|
|
1741
1983
|
readonly modules: Map<string, {
|
|
1742
1984
|
readonly name: string;
|
|
1985
|
+
readonly external: boolean | undefined;
|
|
1743
1986
|
readonly packages: string[];
|
|
1744
1987
|
readonly useFoldersLayout: boolean | undefined;
|
|
1745
1988
|
}>;
|
|
@@ -1754,6 +1997,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1754
1997
|
readonly standaloneComponents: string[];
|
|
1755
1998
|
readonly parameterized: string[];
|
|
1756
1999
|
readonly ignoreMaterialized: string[];
|
|
2000
|
+
readonly ignoreGenerics: string[];
|
|
1757
2001
|
readonly builderClasses: string[];
|
|
1758
2002
|
readonly forceMaterialized: string[];
|
|
1759
2003
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1761,12 +2005,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1761
2005
|
readonly forceContext: string[];
|
|
1762
2006
|
readonly hooks: Map<string, Map<string, {
|
|
1763
2007
|
readonly hookName: string;
|
|
2008
|
+
readonly replaceImplementation: boolean;
|
|
1764
2009
|
}>>;
|
|
1765
2010
|
readonly externalTypes: Map<string, string>;
|
|
1766
2011
|
readonly externalPackages: string[];
|
|
1767
2012
|
readonly moduleName: string;
|
|
1768
2013
|
readonly modules: Map<string, {
|
|
1769
2014
|
readonly name: string;
|
|
2015
|
+
readonly external: boolean | undefined;
|
|
1770
2016
|
readonly packages: string[];
|
|
1771
2017
|
readonly useFoldersLayout: boolean | undefined;
|
|
1772
2018
|
}>;
|
|
@@ -1781,6 +2027,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1781
2027
|
readonly standaloneComponents: string[];
|
|
1782
2028
|
readonly parameterized: string[];
|
|
1783
2029
|
readonly ignoreMaterialized: string[];
|
|
2030
|
+
readonly ignoreGenerics: string[];
|
|
1784
2031
|
readonly builderClasses: string[];
|
|
1785
2032
|
readonly forceMaterialized: string[];
|
|
1786
2033
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1788,12 +2035,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1788
2035
|
readonly forceContext: string[];
|
|
1789
2036
|
readonly hooks: Map<string, Map<string, {
|
|
1790
2037
|
readonly hookName: string;
|
|
2038
|
+
readonly replaceImplementation: boolean;
|
|
1791
2039
|
}>>;
|
|
1792
2040
|
readonly externalTypes: Map<string, string>;
|
|
1793
2041
|
readonly externalPackages: string[];
|
|
1794
2042
|
readonly moduleName: string;
|
|
1795
2043
|
readonly modules: Map<string, {
|
|
1796
2044
|
readonly name: string;
|
|
2045
|
+
readonly external: boolean | undefined;
|
|
1797
2046
|
readonly packages: string[];
|
|
1798
2047
|
readonly useFoldersLayout: boolean | undefined;
|
|
1799
2048
|
}>;
|
|
@@ -1808,6 +2057,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1808
2057
|
readonly standaloneComponents: string[];
|
|
1809
2058
|
readonly parameterized: string[];
|
|
1810
2059
|
readonly ignoreMaterialized: string[];
|
|
2060
|
+
readonly ignoreGenerics: string[];
|
|
1811
2061
|
readonly builderClasses: string[];
|
|
1812
2062
|
readonly forceMaterialized: string[];
|
|
1813
2063
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1815,12 +2065,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1815
2065
|
readonly forceContext: string[];
|
|
1816
2066
|
readonly hooks: Map<string, Map<string, {
|
|
1817
2067
|
readonly hookName: string;
|
|
2068
|
+
readonly replaceImplementation: boolean;
|
|
1818
2069
|
}>>;
|
|
1819
2070
|
readonly externalTypes: Map<string, string>;
|
|
1820
2071
|
readonly externalPackages: string[];
|
|
1821
2072
|
readonly moduleName: string;
|
|
1822
2073
|
readonly modules: Map<string, {
|
|
1823
2074
|
readonly name: string;
|
|
2075
|
+
readonly external: boolean | undefined;
|
|
1824
2076
|
readonly packages: string[];
|
|
1825
2077
|
readonly useFoldersLayout: boolean | undefined;
|
|
1826
2078
|
}>;
|
|
@@ -1835,6 +2087,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1835
2087
|
readonly standaloneComponents: string[];
|
|
1836
2088
|
readonly parameterized: string[];
|
|
1837
2089
|
readonly ignoreMaterialized: string[];
|
|
2090
|
+
readonly ignoreGenerics: string[];
|
|
1838
2091
|
readonly builderClasses: string[];
|
|
1839
2092
|
readonly forceMaterialized: string[];
|
|
1840
2093
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1842,12 +2095,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1842
2095
|
readonly forceContext: string[];
|
|
1843
2096
|
readonly hooks: Map<string, Map<string, {
|
|
1844
2097
|
readonly hookName: string;
|
|
2098
|
+
readonly replaceImplementation: boolean;
|
|
1845
2099
|
}>>;
|
|
1846
2100
|
readonly externalTypes: Map<string, string>;
|
|
1847
2101
|
readonly externalPackages: string[];
|
|
1848
2102
|
readonly moduleName: string;
|
|
1849
2103
|
readonly modules: Map<string, {
|
|
1850
2104
|
readonly name: string;
|
|
2105
|
+
readonly external: boolean | undefined;
|
|
1851
2106
|
readonly packages: string[];
|
|
1852
2107
|
readonly useFoldersLayout: boolean | undefined;
|
|
1853
2108
|
}>;
|
|
@@ -1862,6 +2117,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1862
2117
|
readonly standaloneComponents: string[];
|
|
1863
2118
|
readonly parameterized: string[];
|
|
1864
2119
|
readonly ignoreMaterialized: string[];
|
|
2120
|
+
readonly ignoreGenerics: string[];
|
|
1865
2121
|
readonly builderClasses: string[];
|
|
1866
2122
|
readonly forceMaterialized: string[];
|
|
1867
2123
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1869,12 +2125,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1869
2125
|
readonly forceContext: string[];
|
|
1870
2126
|
readonly hooks: Map<string, Map<string, {
|
|
1871
2127
|
readonly hookName: string;
|
|
2128
|
+
readonly replaceImplementation: boolean;
|
|
1872
2129
|
}>>;
|
|
1873
2130
|
readonly externalTypes: Map<string, string>;
|
|
1874
2131
|
readonly externalPackages: string[];
|
|
1875
2132
|
readonly moduleName: string;
|
|
1876
2133
|
readonly modules: Map<string, {
|
|
1877
2134
|
readonly name: string;
|
|
2135
|
+
readonly external: boolean | undefined;
|
|
1878
2136
|
readonly packages: string[];
|
|
1879
2137
|
readonly useFoldersLayout: boolean | undefined;
|
|
1880
2138
|
}>;
|
|
@@ -1889,6 +2147,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1889
2147
|
readonly standaloneComponents: string[];
|
|
1890
2148
|
readonly parameterized: string[];
|
|
1891
2149
|
readonly ignoreMaterialized: string[];
|
|
2150
|
+
readonly ignoreGenerics: string[];
|
|
1892
2151
|
readonly builderClasses: string[];
|
|
1893
2152
|
readonly forceMaterialized: string[];
|
|
1894
2153
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1896,12 +2155,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1896
2155
|
readonly forceContext: string[];
|
|
1897
2156
|
readonly hooks: Map<string, Map<string, {
|
|
1898
2157
|
readonly hookName: string;
|
|
2158
|
+
readonly replaceImplementation: boolean;
|
|
1899
2159
|
}>>;
|
|
1900
2160
|
readonly externalTypes: Map<string, string>;
|
|
1901
2161
|
readonly externalPackages: string[];
|
|
1902
2162
|
readonly moduleName: string;
|
|
1903
2163
|
readonly modules: Map<string, {
|
|
1904
2164
|
readonly name: string;
|
|
2165
|
+
readonly external: boolean | undefined;
|
|
1905
2166
|
readonly packages: string[];
|
|
1906
2167
|
readonly useFoldersLayout: boolean | undefined;
|
|
1907
2168
|
}>;
|
|
@@ -1916,6 +2177,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1916
2177
|
readonly standaloneComponents: string[];
|
|
1917
2178
|
readonly parameterized: string[];
|
|
1918
2179
|
readonly ignoreMaterialized: string[];
|
|
2180
|
+
readonly ignoreGenerics: string[];
|
|
1919
2181
|
readonly builderClasses: string[];
|
|
1920
2182
|
readonly forceMaterialized: string[];
|
|
1921
2183
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1923,12 +2185,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1923
2185
|
readonly forceContext: string[];
|
|
1924
2186
|
readonly hooks: Map<string, Map<string, {
|
|
1925
2187
|
readonly hookName: string;
|
|
2188
|
+
readonly replaceImplementation: boolean;
|
|
1926
2189
|
}>>;
|
|
1927
2190
|
readonly externalTypes: Map<string, string>;
|
|
1928
2191
|
readonly externalPackages: string[];
|
|
1929
2192
|
readonly moduleName: string;
|
|
1930
2193
|
readonly modules: Map<string, {
|
|
1931
2194
|
readonly name: string;
|
|
2195
|
+
readonly external: boolean | undefined;
|
|
1932
2196
|
readonly packages: string[];
|
|
1933
2197
|
readonly useFoldersLayout: boolean | undefined;
|
|
1934
2198
|
}>;
|
|
@@ -1943,6 +2207,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1943
2207
|
readonly standaloneComponents: string[];
|
|
1944
2208
|
readonly parameterized: string[];
|
|
1945
2209
|
readonly ignoreMaterialized: string[];
|
|
2210
|
+
readonly ignoreGenerics: string[];
|
|
1946
2211
|
readonly builderClasses: string[];
|
|
1947
2212
|
readonly forceMaterialized: string[];
|
|
1948
2213
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1950,12 +2215,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1950
2215
|
readonly forceContext: string[];
|
|
1951
2216
|
readonly hooks: Map<string, Map<string, {
|
|
1952
2217
|
readonly hookName: string;
|
|
2218
|
+
readonly replaceImplementation: boolean;
|
|
1953
2219
|
}>>;
|
|
1954
2220
|
readonly externalTypes: Map<string, string>;
|
|
1955
2221
|
readonly externalPackages: string[];
|
|
1956
2222
|
readonly moduleName: string;
|
|
1957
2223
|
readonly modules: Map<string, {
|
|
1958
2224
|
readonly name: string;
|
|
2225
|
+
readonly external: boolean | undefined;
|
|
1959
2226
|
readonly packages: string[];
|
|
1960
2227
|
readonly useFoldersLayout: boolean | undefined;
|
|
1961
2228
|
}>;
|
|
@@ -1970,6 +2237,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1970
2237
|
readonly standaloneComponents: string[];
|
|
1971
2238
|
readonly parameterized: string[];
|
|
1972
2239
|
readonly ignoreMaterialized: string[];
|
|
2240
|
+
readonly ignoreGenerics: string[];
|
|
1973
2241
|
readonly builderClasses: string[];
|
|
1974
2242
|
readonly forceMaterialized: string[];
|
|
1975
2243
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -1977,12 +2245,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1977
2245
|
readonly forceContext: string[];
|
|
1978
2246
|
readonly hooks: Map<string, Map<string, {
|
|
1979
2247
|
readonly hookName: string;
|
|
2248
|
+
readonly replaceImplementation: boolean;
|
|
1980
2249
|
}>>;
|
|
1981
2250
|
readonly externalTypes: Map<string, string>;
|
|
1982
2251
|
readonly externalPackages: string[];
|
|
1983
2252
|
readonly moduleName: string;
|
|
1984
2253
|
readonly modules: Map<string, {
|
|
1985
2254
|
readonly name: string;
|
|
2255
|
+
readonly external: boolean | undefined;
|
|
1986
2256
|
readonly packages: string[];
|
|
1987
2257
|
readonly useFoldersLayout: boolean | undefined;
|
|
1988
2258
|
}>;
|
|
@@ -1997,6 +2267,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1997
2267
|
readonly standaloneComponents: string[];
|
|
1998
2268
|
readonly parameterized: string[];
|
|
1999
2269
|
readonly ignoreMaterialized: string[];
|
|
2270
|
+
readonly ignoreGenerics: string[];
|
|
2000
2271
|
readonly builderClasses: string[];
|
|
2001
2272
|
readonly forceMaterialized: string[];
|
|
2002
2273
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2004,12 +2275,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2004
2275
|
readonly forceContext: string[];
|
|
2005
2276
|
readonly hooks: Map<string, Map<string, {
|
|
2006
2277
|
readonly hookName: string;
|
|
2278
|
+
readonly replaceImplementation: boolean;
|
|
2007
2279
|
}>>;
|
|
2008
2280
|
readonly externalTypes: Map<string, string>;
|
|
2009
2281
|
readonly externalPackages: string[];
|
|
2010
2282
|
readonly moduleName: string;
|
|
2011
2283
|
readonly modules: Map<string, {
|
|
2012
2284
|
readonly name: string;
|
|
2285
|
+
readonly external: boolean | undefined;
|
|
2013
2286
|
readonly packages: string[];
|
|
2014
2287
|
readonly useFoldersLayout: boolean | undefined;
|
|
2015
2288
|
}>;
|
|
@@ -2024,6 +2297,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2024
2297
|
readonly standaloneComponents: string[];
|
|
2025
2298
|
readonly parameterized: string[];
|
|
2026
2299
|
readonly ignoreMaterialized: string[];
|
|
2300
|
+
readonly ignoreGenerics: string[];
|
|
2027
2301
|
readonly builderClasses: string[];
|
|
2028
2302
|
readonly forceMaterialized: string[];
|
|
2029
2303
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2031,12 +2305,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2031
2305
|
readonly forceContext: string[];
|
|
2032
2306
|
readonly hooks: Map<string, Map<string, {
|
|
2033
2307
|
readonly hookName: string;
|
|
2308
|
+
readonly replaceImplementation: boolean;
|
|
2034
2309
|
}>>;
|
|
2035
2310
|
readonly externalTypes: Map<string, string>;
|
|
2036
2311
|
readonly externalPackages: string[];
|
|
2037
2312
|
readonly moduleName: string;
|
|
2038
2313
|
readonly modules: Map<string, {
|
|
2039
2314
|
readonly name: string;
|
|
2315
|
+
readonly external: boolean | undefined;
|
|
2040
2316
|
readonly packages: string[];
|
|
2041
2317
|
readonly useFoldersLayout: boolean | undefined;
|
|
2042
2318
|
}>;
|
|
@@ -2051,6 +2327,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2051
2327
|
readonly standaloneComponents: string[];
|
|
2052
2328
|
readonly parameterized: string[];
|
|
2053
2329
|
readonly ignoreMaterialized: string[];
|
|
2330
|
+
readonly ignoreGenerics: string[];
|
|
2054
2331
|
readonly builderClasses: string[];
|
|
2055
2332
|
readonly forceMaterialized: string[];
|
|
2056
2333
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2058,12 +2335,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2058
2335
|
readonly forceContext: string[];
|
|
2059
2336
|
readonly hooks: Map<string, Map<string, {
|
|
2060
2337
|
readonly hookName: string;
|
|
2338
|
+
readonly replaceImplementation: boolean;
|
|
2061
2339
|
}>>;
|
|
2062
2340
|
readonly externalTypes: Map<string, string>;
|
|
2063
2341
|
readonly externalPackages: string[];
|
|
2064
2342
|
readonly moduleName: string;
|
|
2065
2343
|
readonly modules: Map<string, {
|
|
2066
2344
|
readonly name: string;
|
|
2345
|
+
readonly external: boolean | undefined;
|
|
2067
2346
|
readonly packages: string[];
|
|
2068
2347
|
readonly useFoldersLayout: boolean | undefined;
|
|
2069
2348
|
}>;
|
|
@@ -2078,6 +2357,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2078
2357
|
readonly standaloneComponents: string[];
|
|
2079
2358
|
readonly parameterized: string[];
|
|
2080
2359
|
readonly ignoreMaterialized: string[];
|
|
2360
|
+
readonly ignoreGenerics: string[];
|
|
2081
2361
|
readonly builderClasses: string[];
|
|
2082
2362
|
readonly forceMaterialized: string[];
|
|
2083
2363
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2085,12 +2365,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2085
2365
|
readonly forceContext: string[];
|
|
2086
2366
|
readonly hooks: Map<string, Map<string, {
|
|
2087
2367
|
readonly hookName: string;
|
|
2368
|
+
readonly replaceImplementation: boolean;
|
|
2088
2369
|
}>>;
|
|
2089
2370
|
readonly externalTypes: Map<string, string>;
|
|
2090
2371
|
readonly externalPackages: string[];
|
|
2091
2372
|
readonly moduleName: string;
|
|
2092
2373
|
readonly modules: Map<string, {
|
|
2093
2374
|
readonly name: string;
|
|
2375
|
+
readonly external: boolean | undefined;
|
|
2094
2376
|
readonly packages: string[];
|
|
2095
2377
|
readonly useFoldersLayout: boolean | undefined;
|
|
2096
2378
|
}>;
|
|
@@ -2105,6 +2387,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2105
2387
|
readonly standaloneComponents: string[];
|
|
2106
2388
|
readonly parameterized: string[];
|
|
2107
2389
|
readonly ignoreMaterialized: string[];
|
|
2390
|
+
readonly ignoreGenerics: string[];
|
|
2108
2391
|
readonly builderClasses: string[];
|
|
2109
2392
|
readonly forceMaterialized: string[];
|
|
2110
2393
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2112,12 +2395,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2112
2395
|
readonly forceContext: string[];
|
|
2113
2396
|
readonly hooks: Map<string, Map<string, {
|
|
2114
2397
|
readonly hookName: string;
|
|
2398
|
+
readonly replaceImplementation: boolean;
|
|
2115
2399
|
}>>;
|
|
2116
2400
|
readonly externalTypes: Map<string, string>;
|
|
2117
2401
|
readonly externalPackages: string[];
|
|
2118
2402
|
readonly moduleName: string;
|
|
2119
2403
|
readonly modules: Map<string, {
|
|
2120
2404
|
readonly name: string;
|
|
2405
|
+
readonly external: boolean | undefined;
|
|
2121
2406
|
readonly packages: string[];
|
|
2122
2407
|
readonly useFoldersLayout: boolean | undefined;
|
|
2123
2408
|
}>;
|
|
@@ -2132,6 +2417,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2132
2417
|
readonly standaloneComponents: string[];
|
|
2133
2418
|
readonly parameterized: string[];
|
|
2134
2419
|
readonly ignoreMaterialized: string[];
|
|
2420
|
+
readonly ignoreGenerics: string[];
|
|
2135
2421
|
readonly builderClasses: string[];
|
|
2136
2422
|
readonly forceMaterialized: string[];
|
|
2137
2423
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2139,12 +2425,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2139
2425
|
readonly forceContext: string[];
|
|
2140
2426
|
readonly hooks: Map<string, Map<string, {
|
|
2141
2427
|
readonly hookName: string;
|
|
2428
|
+
readonly replaceImplementation: boolean;
|
|
2142
2429
|
}>>;
|
|
2143
2430
|
readonly externalTypes: Map<string, string>;
|
|
2144
2431
|
readonly externalPackages: string[];
|
|
2145
2432
|
readonly moduleName: string;
|
|
2146
2433
|
readonly modules: Map<string, {
|
|
2147
2434
|
readonly name: string;
|
|
2435
|
+
readonly external: boolean | undefined;
|
|
2148
2436
|
readonly packages: string[];
|
|
2149
2437
|
readonly useFoldersLayout: boolean | undefined;
|
|
2150
2438
|
}>;
|
|
@@ -2159,6 +2447,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2159
2447
|
readonly standaloneComponents: string[];
|
|
2160
2448
|
readonly parameterized: string[];
|
|
2161
2449
|
readonly ignoreMaterialized: string[];
|
|
2450
|
+
readonly ignoreGenerics: string[];
|
|
2162
2451
|
readonly builderClasses: string[];
|
|
2163
2452
|
readonly forceMaterialized: string[];
|
|
2164
2453
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2166,12 +2455,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2166
2455
|
readonly forceContext: string[];
|
|
2167
2456
|
readonly hooks: Map<string, Map<string, {
|
|
2168
2457
|
readonly hookName: string;
|
|
2458
|
+
readonly replaceImplementation: boolean;
|
|
2169
2459
|
}>>;
|
|
2170
2460
|
readonly externalTypes: Map<string, string>;
|
|
2171
2461
|
readonly externalPackages: string[];
|
|
2172
2462
|
readonly moduleName: string;
|
|
2173
2463
|
readonly modules: Map<string, {
|
|
2174
2464
|
readonly name: string;
|
|
2465
|
+
readonly external: boolean | undefined;
|
|
2175
2466
|
readonly packages: string[];
|
|
2176
2467
|
readonly useFoldersLayout: boolean | undefined;
|
|
2177
2468
|
}>;
|
|
@@ -2186,6 +2477,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2186
2477
|
readonly standaloneComponents: string[];
|
|
2187
2478
|
readonly parameterized: string[];
|
|
2188
2479
|
readonly ignoreMaterialized: string[];
|
|
2480
|
+
readonly ignoreGenerics: string[];
|
|
2189
2481
|
readonly builderClasses: string[];
|
|
2190
2482
|
readonly forceMaterialized: string[];
|
|
2191
2483
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2193,12 +2485,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2193
2485
|
readonly forceContext: string[];
|
|
2194
2486
|
readonly hooks: Map<string, Map<string, {
|
|
2195
2487
|
readonly hookName: string;
|
|
2488
|
+
readonly replaceImplementation: boolean;
|
|
2196
2489
|
}>>;
|
|
2197
2490
|
readonly externalTypes: Map<string, string>;
|
|
2198
2491
|
readonly externalPackages: string[];
|
|
2199
2492
|
readonly moduleName: string;
|
|
2200
2493
|
readonly modules: Map<string, {
|
|
2201
2494
|
readonly name: string;
|
|
2495
|
+
readonly external: boolean | undefined;
|
|
2202
2496
|
readonly packages: string[];
|
|
2203
2497
|
readonly useFoldersLayout: boolean | undefined;
|
|
2204
2498
|
}>;
|
|
@@ -2213,6 +2507,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2213
2507
|
readonly standaloneComponents: string[];
|
|
2214
2508
|
readonly parameterized: string[];
|
|
2215
2509
|
readonly ignoreMaterialized: string[];
|
|
2510
|
+
readonly ignoreGenerics: string[];
|
|
2216
2511
|
readonly builderClasses: string[];
|
|
2217
2512
|
readonly forceMaterialized: string[];
|
|
2218
2513
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2220,12 +2515,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2220
2515
|
readonly forceContext: string[];
|
|
2221
2516
|
readonly hooks: Map<string, Map<string, {
|
|
2222
2517
|
readonly hookName: string;
|
|
2518
|
+
readonly replaceImplementation: boolean;
|
|
2223
2519
|
}>>;
|
|
2224
2520
|
readonly externalTypes: Map<string, string>;
|
|
2225
2521
|
readonly externalPackages: string[];
|
|
2226
2522
|
readonly moduleName: string;
|
|
2227
2523
|
readonly modules: Map<string, {
|
|
2228
2524
|
readonly name: string;
|
|
2525
|
+
readonly external: boolean | undefined;
|
|
2229
2526
|
readonly packages: string[];
|
|
2230
2527
|
readonly useFoldersLayout: boolean | undefined;
|
|
2231
2528
|
}>;
|
|
@@ -2240,6 +2537,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2240
2537
|
readonly standaloneComponents: string[];
|
|
2241
2538
|
readonly parameterized: string[];
|
|
2242
2539
|
readonly ignoreMaterialized: string[];
|
|
2540
|
+
readonly ignoreGenerics: string[];
|
|
2243
2541
|
readonly builderClasses: string[];
|
|
2244
2542
|
readonly forceMaterialized: string[];
|
|
2245
2543
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2247,12 +2545,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2247
2545
|
readonly forceContext: string[];
|
|
2248
2546
|
readonly hooks: Map<string, Map<string, {
|
|
2249
2547
|
readonly hookName: string;
|
|
2548
|
+
readonly replaceImplementation: boolean;
|
|
2250
2549
|
}>>;
|
|
2251
2550
|
readonly externalTypes: Map<string, string>;
|
|
2252
2551
|
readonly externalPackages: string[];
|
|
2253
2552
|
readonly moduleName: string;
|
|
2254
2553
|
readonly modules: Map<string, {
|
|
2255
2554
|
readonly name: string;
|
|
2555
|
+
readonly external: boolean | undefined;
|
|
2256
2556
|
readonly packages: string[];
|
|
2257
2557
|
readonly useFoldersLayout: boolean | undefined;
|
|
2258
2558
|
}>;
|
|
@@ -2267,6 +2567,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2267
2567
|
readonly standaloneComponents: string[];
|
|
2268
2568
|
readonly parameterized: string[];
|
|
2269
2569
|
readonly ignoreMaterialized: string[];
|
|
2570
|
+
readonly ignoreGenerics: string[];
|
|
2270
2571
|
readonly builderClasses: string[];
|
|
2271
2572
|
readonly forceMaterialized: string[];
|
|
2272
2573
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2274,12 +2575,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2274
2575
|
readonly forceContext: string[];
|
|
2275
2576
|
readonly hooks: Map<string, Map<string, {
|
|
2276
2577
|
readonly hookName: string;
|
|
2578
|
+
readonly replaceImplementation: boolean;
|
|
2277
2579
|
}>>;
|
|
2278
2580
|
readonly externalTypes: Map<string, string>;
|
|
2279
2581
|
readonly externalPackages: string[];
|
|
2280
2582
|
readonly moduleName: string;
|
|
2281
2583
|
readonly modules: Map<string, {
|
|
2282
2584
|
readonly name: string;
|
|
2585
|
+
readonly external: boolean | undefined;
|
|
2283
2586
|
readonly packages: string[];
|
|
2284
2587
|
readonly useFoldersLayout: boolean | undefined;
|
|
2285
2588
|
}>;
|
|
@@ -2294,6 +2597,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2294
2597
|
readonly standaloneComponents: string[];
|
|
2295
2598
|
readonly parameterized: string[];
|
|
2296
2599
|
readonly ignoreMaterialized: string[];
|
|
2600
|
+
readonly ignoreGenerics: string[];
|
|
2297
2601
|
readonly builderClasses: string[];
|
|
2298
2602
|
readonly forceMaterialized: string[];
|
|
2299
2603
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2301,12 +2605,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2301
2605
|
readonly forceContext: string[];
|
|
2302
2606
|
readonly hooks: Map<string, Map<string, {
|
|
2303
2607
|
readonly hookName: string;
|
|
2608
|
+
readonly replaceImplementation: boolean;
|
|
2304
2609
|
}>>;
|
|
2305
2610
|
readonly externalTypes: Map<string, string>;
|
|
2306
2611
|
readonly externalPackages: string[];
|
|
2307
2612
|
readonly moduleName: string;
|
|
2308
2613
|
readonly modules: Map<string, {
|
|
2309
2614
|
readonly name: string;
|
|
2615
|
+
readonly external: boolean | undefined;
|
|
2310
2616
|
readonly packages: string[];
|
|
2311
2617
|
readonly useFoldersLayout: boolean | undefined;
|
|
2312
2618
|
}>;
|
|
@@ -2321,6 +2627,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2321
2627
|
readonly standaloneComponents: string[];
|
|
2322
2628
|
readonly parameterized: string[];
|
|
2323
2629
|
readonly ignoreMaterialized: string[];
|
|
2630
|
+
readonly ignoreGenerics: string[];
|
|
2324
2631
|
readonly builderClasses: string[];
|
|
2325
2632
|
readonly forceMaterialized: string[];
|
|
2326
2633
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2328,12 +2635,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2328
2635
|
readonly forceContext: string[];
|
|
2329
2636
|
readonly hooks: Map<string, Map<string, {
|
|
2330
2637
|
readonly hookName: string;
|
|
2638
|
+
readonly replaceImplementation: boolean;
|
|
2331
2639
|
}>>;
|
|
2332
2640
|
readonly externalTypes: Map<string, string>;
|
|
2333
2641
|
readonly externalPackages: string[];
|
|
2334
2642
|
readonly moduleName: string;
|
|
2335
2643
|
readonly modules: Map<string, {
|
|
2336
2644
|
readonly name: string;
|
|
2645
|
+
readonly external: boolean | undefined;
|
|
2337
2646
|
readonly packages: string[];
|
|
2338
2647
|
readonly useFoldersLayout: boolean | undefined;
|
|
2339
2648
|
}>;
|
|
@@ -2348,6 +2657,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2348
2657
|
readonly standaloneComponents: string[];
|
|
2349
2658
|
readonly parameterized: string[];
|
|
2350
2659
|
readonly ignoreMaterialized: string[];
|
|
2660
|
+
readonly ignoreGenerics: string[];
|
|
2351
2661
|
readonly builderClasses: string[];
|
|
2352
2662
|
readonly forceMaterialized: string[];
|
|
2353
2663
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2355,12 +2665,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2355
2665
|
readonly forceContext: string[];
|
|
2356
2666
|
readonly hooks: Map<string, Map<string, {
|
|
2357
2667
|
readonly hookName: string;
|
|
2668
|
+
readonly replaceImplementation: boolean;
|
|
2358
2669
|
}>>;
|
|
2359
2670
|
readonly externalTypes: Map<string, string>;
|
|
2360
2671
|
readonly externalPackages: string[];
|
|
2361
2672
|
readonly moduleName: string;
|
|
2362
2673
|
readonly modules: Map<string, {
|
|
2363
2674
|
readonly name: string;
|
|
2675
|
+
readonly external: boolean | undefined;
|
|
2364
2676
|
readonly packages: string[];
|
|
2365
2677
|
readonly useFoldersLayout: boolean | undefined;
|
|
2366
2678
|
}>;
|
|
@@ -2375,6 +2687,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2375
2687
|
readonly standaloneComponents: string[];
|
|
2376
2688
|
readonly parameterized: string[];
|
|
2377
2689
|
readonly ignoreMaterialized: string[];
|
|
2690
|
+
readonly ignoreGenerics: string[];
|
|
2378
2691
|
readonly builderClasses: string[];
|
|
2379
2692
|
readonly forceMaterialized: string[];
|
|
2380
2693
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2382,12 +2695,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2382
2695
|
readonly forceContext: string[];
|
|
2383
2696
|
readonly hooks: Map<string, Map<string, {
|
|
2384
2697
|
readonly hookName: string;
|
|
2698
|
+
readonly replaceImplementation: boolean;
|
|
2385
2699
|
}>>;
|
|
2386
2700
|
readonly externalTypes: Map<string, string>;
|
|
2387
2701
|
readonly externalPackages: string[];
|
|
2388
2702
|
readonly moduleName: string;
|
|
2389
2703
|
readonly modules: Map<string, {
|
|
2390
2704
|
readonly name: string;
|
|
2705
|
+
readonly external: boolean | undefined;
|
|
2391
2706
|
readonly packages: string[];
|
|
2392
2707
|
readonly useFoldersLayout: boolean | undefined;
|
|
2393
2708
|
}>;
|
|
@@ -2402,6 +2717,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2402
2717
|
readonly standaloneComponents: string[];
|
|
2403
2718
|
readonly parameterized: string[];
|
|
2404
2719
|
readonly ignoreMaterialized: string[];
|
|
2720
|
+
readonly ignoreGenerics: string[];
|
|
2405
2721
|
readonly builderClasses: string[];
|
|
2406
2722
|
readonly forceMaterialized: string[];
|
|
2407
2723
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2409,12 +2725,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2409
2725
|
readonly forceContext: string[];
|
|
2410
2726
|
readonly hooks: Map<string, Map<string, {
|
|
2411
2727
|
readonly hookName: string;
|
|
2728
|
+
readonly replaceImplementation: boolean;
|
|
2412
2729
|
}>>;
|
|
2413
2730
|
readonly externalTypes: Map<string, string>;
|
|
2414
2731
|
readonly externalPackages: string[];
|
|
2415
2732
|
readonly moduleName: string;
|
|
2416
2733
|
readonly modules: Map<string, {
|
|
2417
2734
|
readonly name: string;
|
|
2735
|
+
readonly external: boolean | undefined;
|
|
2418
2736
|
readonly packages: string[];
|
|
2419
2737
|
readonly useFoldersLayout: boolean | undefined;
|
|
2420
2738
|
}>;
|
|
@@ -2429,6 +2747,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2429
2747
|
readonly standaloneComponents: string[];
|
|
2430
2748
|
readonly parameterized: string[];
|
|
2431
2749
|
readonly ignoreMaterialized: string[];
|
|
2750
|
+
readonly ignoreGenerics: string[];
|
|
2432
2751
|
readonly builderClasses: string[];
|
|
2433
2752
|
readonly forceMaterialized: string[];
|
|
2434
2753
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2436,12 +2755,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2436
2755
|
readonly forceContext: string[];
|
|
2437
2756
|
readonly hooks: Map<string, Map<string, {
|
|
2438
2757
|
readonly hookName: string;
|
|
2758
|
+
readonly replaceImplementation: boolean;
|
|
2439
2759
|
}>>;
|
|
2440
2760
|
readonly externalTypes: Map<string, string>;
|
|
2441
2761
|
readonly externalPackages: string[];
|
|
2442
2762
|
readonly moduleName: string;
|
|
2443
2763
|
readonly modules: Map<string, {
|
|
2444
2764
|
readonly name: string;
|
|
2765
|
+
readonly external: boolean | undefined;
|
|
2445
2766
|
readonly packages: string[];
|
|
2446
2767
|
readonly useFoldersLayout: boolean | undefined;
|
|
2447
2768
|
}>;
|
|
@@ -2456,6 +2777,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2456
2777
|
readonly standaloneComponents: string[];
|
|
2457
2778
|
readonly parameterized: string[];
|
|
2458
2779
|
readonly ignoreMaterialized: string[];
|
|
2780
|
+
readonly ignoreGenerics: string[];
|
|
2459
2781
|
readonly builderClasses: string[];
|
|
2460
2782
|
readonly forceMaterialized: string[];
|
|
2461
2783
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2463,12 +2785,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2463
2785
|
readonly forceContext: string[];
|
|
2464
2786
|
readonly hooks: Map<string, Map<string, {
|
|
2465
2787
|
readonly hookName: string;
|
|
2788
|
+
readonly replaceImplementation: boolean;
|
|
2466
2789
|
}>>;
|
|
2467
2790
|
readonly externalTypes: Map<string, string>;
|
|
2468
2791
|
readonly externalPackages: string[];
|
|
2469
2792
|
readonly moduleName: string;
|
|
2470
2793
|
readonly modules: Map<string, {
|
|
2471
2794
|
readonly name: string;
|
|
2795
|
+
readonly external: boolean | undefined;
|
|
2472
2796
|
readonly packages: string[];
|
|
2473
2797
|
readonly useFoldersLayout: boolean | undefined;
|
|
2474
2798
|
}>;
|
|
@@ -2483,6 +2807,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2483
2807
|
readonly standaloneComponents: string[];
|
|
2484
2808
|
readonly parameterized: string[];
|
|
2485
2809
|
readonly ignoreMaterialized: string[];
|
|
2810
|
+
readonly ignoreGenerics: string[];
|
|
2486
2811
|
readonly builderClasses: string[];
|
|
2487
2812
|
readonly forceMaterialized: string[];
|
|
2488
2813
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2490,12 +2815,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2490
2815
|
readonly forceContext: string[];
|
|
2491
2816
|
readonly hooks: Map<string, Map<string, {
|
|
2492
2817
|
readonly hookName: string;
|
|
2818
|
+
readonly replaceImplementation: boolean;
|
|
2493
2819
|
}>>;
|
|
2494
2820
|
readonly externalTypes: Map<string, string>;
|
|
2495
2821
|
readonly externalPackages: string[];
|
|
2496
2822
|
readonly moduleName: string;
|
|
2497
2823
|
readonly modules: Map<string, {
|
|
2498
2824
|
readonly name: string;
|
|
2825
|
+
readonly external: boolean | undefined;
|
|
2499
2826
|
readonly packages: string[];
|
|
2500
2827
|
readonly useFoldersLayout: boolean | undefined;
|
|
2501
2828
|
}>;
|
|
@@ -2510,6 +2837,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2510
2837
|
readonly standaloneComponents: string[];
|
|
2511
2838
|
readonly parameterized: string[];
|
|
2512
2839
|
readonly ignoreMaterialized: string[];
|
|
2840
|
+
readonly ignoreGenerics: string[];
|
|
2513
2841
|
readonly builderClasses: string[];
|
|
2514
2842
|
readonly forceMaterialized: string[];
|
|
2515
2843
|
readonly forceCallback: Map<string, string[]>;
|
|
@@ -2517,12 +2845,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2517
2845
|
readonly forceContext: string[];
|
|
2518
2846
|
readonly hooks: Map<string, Map<string, {
|
|
2519
2847
|
readonly hookName: string;
|
|
2848
|
+
readonly replaceImplementation: boolean;
|
|
2520
2849
|
}>>;
|
|
2521
2850
|
readonly externalTypes: Map<string, string>;
|
|
2522
2851
|
readonly externalPackages: string[];
|
|
2523
2852
|
readonly moduleName: string;
|
|
2524
2853
|
readonly modules: Map<string, {
|
|
2525
2854
|
readonly name: string;
|
|
2855
|
+
readonly external: boolean | undefined;
|
|
2526
2856
|
readonly packages: string[];
|
|
2527
2857
|
readonly useFoldersLayout: boolean | undefined;
|
|
2528
2858
|
}>;
|
|
@@ -2550,5 +2880,10 @@ export declare function setDefaultConfiguration<T extends CoreConfiguration>(con
|
|
|
2550
2880
|
export declare function patchDefaultConfiguration<T extends CoreConfiguration>(config: Partial<T>): void;
|
|
2551
2881
|
export declare function generatorConfiguration<T extends CoreConfiguration>(): T;
|
|
2552
2882
|
export declare function generatorTypePrefix(): string;
|
|
2553
|
-
|
|
2883
|
+
interface HookMethod {
|
|
2884
|
+
hookName: string;
|
|
2885
|
+
replaceImplementation: boolean;
|
|
2886
|
+
}
|
|
2887
|
+
export declare function getHookMethod(className: string, methodName: string): HookMethod | undefined;
|
|
2888
|
+
export {};
|
|
2554
2889
|
//# sourceMappingURL=config.d.ts.map
|