@idlizer/core 2.1.10-arktscgen-3a → 2.1.10-arktscgen-5
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 +0 -2
- package/build/lib/src/LanguageWriters/ArgConvertors.d.ts +15 -2
- package/build/lib/src/LanguageWriters/ArgConvertors.js +75 -19
- package/build/lib/src/LanguageWriters/LanguageWriter.d.ts +14 -2
- package/build/lib/src/LanguageWriters/LanguageWriter.js +12 -4
- package/build/lib/src/LanguageWriters/convertors/CJConvertors.d.ts +0 -1
- package/build/lib/src/LanguageWriters/convertors/CJConvertors.js +2 -4
- package/build/lib/src/LanguageWriters/convertors/CppConvertors.d.ts +7 -7
- package/build/lib/src/LanguageWriters/convertors/CppConvertors.js +37 -23
- package/build/lib/src/LanguageWriters/convertors/KotlinConvertors.js +9 -5
- package/build/lib/src/LanguageWriters/convertors/TSConvertors.d.ts +4 -4
- package/build/lib/src/LanguageWriters/convertors/TSConvertors.js +73 -30
- package/build/lib/src/LanguageWriters/index.d.ts +2 -2
- package/build/lib/src/LanguageWriters/index.js +8 -13
- package/build/lib/src/LanguageWriters/writers/CJLanguageWriter.d.ts +4 -0
- package/build/lib/src/LanguageWriters/writers/CJLanguageWriter.js +24 -16
- package/build/lib/src/LanguageWriters/writers/CppLanguageWriter.d.ts +2 -0
- package/build/lib/src/LanguageWriters/writers/CppLanguageWriter.js +7 -1
- package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.d.ts +1 -2
- package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.js +0 -6
- package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.d.ts +2 -0
- package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.js +11 -0
- package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.d.ts +8 -0
- package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.js +75 -27
- package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.d.ts +2 -0
- package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.js +38 -12
- package/build/lib/src/LibraryInterface.d.ts +0 -1
- package/build/lib/src/config.d.ts +760 -0
- package/build/lib/src/config.js +7 -0
- package/build/lib/src/formatter.js +5 -2
- package/build/lib/src/from-idl/DtsPrinter.js +3 -3
- package/build/lib/src/from-idl/common.js +2 -2
- package/build/lib/src/from-idl/deserialize.d.ts +3 -7
- package/build/lib/src/from-idl/deserialize.js +65 -39
- package/build/lib/src/from-idl/parser.d.ts +1 -1
- package/build/lib/src/from-idl/parser.js +29 -20
- package/build/lib/src/idl.d.ts +12 -1
- package/build/lib/src/idl.js +73 -11
- package/build/lib/src/index.d.ts +3 -5
- package/build/lib/src/index.js +3 -5
- package/build/lib/src/inheritance.d.ts +0 -2
- package/build/lib/src/inheritance.js +0 -17
- package/build/lib/src/languageSpecificKeywords.js +1 -1
- package/build/lib/src/peer-generation/ConflictingDeclarations.d.ts +6 -0
- package/build/lib/src/peer-generation/ConflictingDeclarations.js +43 -0
- package/build/lib/src/peer-generation/LayoutManager.d.ts +2 -0
- package/build/lib/src/peer-generation/LayoutManager.js +15 -0
- package/build/lib/src/peer-generation/Materialized.d.ts +2 -0
- package/build/lib/src/peer-generation/Materialized.js +14 -1
- package/build/lib/src/peer-generation/PeerLibrary.d.ts +0 -3
- package/build/lib/src/peer-generation/PeerLibrary.js +63 -38
- package/build/lib/src/peer-generation/idl/IdlNameConvertor.d.ts +6 -0
- package/build/lib/src/peer-generation/idl/IdlNameConvertor.js +15 -3
- package/build/lib/src/peer-generation/isMaterialized.js +1 -1
- package/build/lib/src/peer-generation/modules.d.ts +2 -0
- package/build/lib/src/peer-generation/modules.js +14 -1
- package/build/lib/src/transformers/GenericTransformer.js +70 -5
- package/build/lib/src/transformers/NullTransformer.d.ts +0 -1
- package/build/lib/src/transformers/NullTransformer.js +1 -2
- package/build/lib/src/transformers/OnSerializeTransformer.d.ts +3 -0
- package/build/lib/src/transformers/OnSerializeTransformer.js +19 -0
- package/build/lib/src/util.d.ts +10 -39
- package/build/lib/src/util.js +56 -371
- package/package.json +45 -49
|
@@ -7,6 +7,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
7
7
|
readonly external: boolean | undefined;
|
|
8
8
|
readonly packages: string[];
|
|
9
9
|
readonly useFoldersLayout: boolean | undefined;
|
|
10
|
+
readonly tsLikePackage: string | undefined;
|
|
10
11
|
}>;
|
|
11
12
|
success(): boolean;
|
|
12
13
|
unwrap(message?: string | undefined): {
|
|
@@ -14,6 +15,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
14
15
|
readonly external: boolean | undefined;
|
|
15
16
|
readonly packages: string[];
|
|
16
17
|
readonly useFoldersLayout: boolean | undefined;
|
|
18
|
+
readonly tsLikePackage: string | undefined;
|
|
17
19
|
};
|
|
18
20
|
error(): string;
|
|
19
21
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -21,6 +23,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
21
23
|
readonly external: boolean | undefined;
|
|
22
24
|
readonly packages: string[];
|
|
23
25
|
readonly useFoldersLayout: boolean | undefined;
|
|
26
|
+
readonly tsLikePackage: string | undefined;
|
|
24
27
|
}>;
|
|
25
28
|
or<U>(x: U): {
|
|
26
29
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -28,6 +31,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
28
31
|
readonly external: boolean | undefined;
|
|
29
32
|
readonly packages: string[];
|
|
30
33
|
readonly useFoldersLayout: boolean | undefined;
|
|
34
|
+
readonly tsLikePackage: string | undefined;
|
|
31
35
|
} | U>;
|
|
32
36
|
success(): boolean;
|
|
33
37
|
unwrap(message?: string | undefined): {
|
|
@@ -35,6 +39,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
35
39
|
readonly external: boolean | undefined;
|
|
36
40
|
readonly packages: string[];
|
|
37
41
|
readonly useFoldersLayout: boolean | undefined;
|
|
42
|
+
readonly tsLikePackage: string | undefined;
|
|
38
43
|
} | U;
|
|
39
44
|
error(): string;
|
|
40
45
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -42,6 +47,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
42
47
|
readonly external: boolean | undefined;
|
|
43
48
|
readonly packages: string[];
|
|
44
49
|
readonly useFoldersLayout: boolean | undefined;
|
|
50
|
+
readonly tsLikePackage: string | undefined;
|
|
45
51
|
} | U>;
|
|
46
52
|
or<U_1>(x: U_1): {
|
|
47
53
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -49,6 +55,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
49
55
|
readonly external: boolean | undefined;
|
|
50
56
|
readonly packages: string[];
|
|
51
57
|
readonly useFoldersLayout: boolean | undefined;
|
|
58
|
+
readonly tsLikePackage: string | undefined;
|
|
52
59
|
} | U | U_1>;
|
|
53
60
|
success(): boolean;
|
|
54
61
|
unwrap(message?: string | undefined): {
|
|
@@ -56,6 +63,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
56
63
|
readonly external: boolean | undefined;
|
|
57
64
|
readonly packages: string[];
|
|
58
65
|
readonly useFoldersLayout: boolean | undefined;
|
|
66
|
+
readonly tsLikePackage: string | undefined;
|
|
59
67
|
} | U | U_1;
|
|
60
68
|
error(): string;
|
|
61
69
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -63,6 +71,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
63
71
|
readonly external: boolean | undefined;
|
|
64
72
|
readonly packages: string[];
|
|
65
73
|
readonly useFoldersLayout: boolean | undefined;
|
|
74
|
+
readonly tsLikePackage: string | undefined;
|
|
66
75
|
} | U | U_1>;
|
|
67
76
|
or<U_2>(x: U_2): {
|
|
68
77
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -70,6 +79,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
70
79
|
readonly external: boolean | undefined;
|
|
71
80
|
readonly packages: string[];
|
|
72
81
|
readonly useFoldersLayout: boolean | undefined;
|
|
82
|
+
readonly tsLikePackage: string | undefined;
|
|
73
83
|
} | U | U_1 | U_2>;
|
|
74
84
|
success(): boolean;
|
|
75
85
|
unwrap(message?: string | undefined): {
|
|
@@ -77,6 +87,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
77
87
|
readonly external: boolean | undefined;
|
|
78
88
|
readonly packages: string[];
|
|
79
89
|
readonly useFoldersLayout: boolean | undefined;
|
|
90
|
+
readonly tsLikePackage: string | undefined;
|
|
80
91
|
} | U | U_1 | U_2;
|
|
81
92
|
error(): string;
|
|
82
93
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -84,6 +95,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
84
95
|
readonly external: boolean | undefined;
|
|
85
96
|
readonly packages: string[];
|
|
86
97
|
readonly useFoldersLayout: boolean | undefined;
|
|
98
|
+
readonly tsLikePackage: string | undefined;
|
|
87
99
|
} | U | U_1 | U_2>;
|
|
88
100
|
or<U_3>(x: U_3): {
|
|
89
101
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -91,6 +103,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
91
103
|
readonly external: boolean | undefined;
|
|
92
104
|
readonly packages: string[];
|
|
93
105
|
readonly useFoldersLayout: boolean | undefined;
|
|
106
|
+
readonly tsLikePackage: string | undefined;
|
|
94
107
|
} | U | U_1 | U_2 | U_3>;
|
|
95
108
|
success(): boolean;
|
|
96
109
|
unwrap(message?: string | undefined): {
|
|
@@ -98,6 +111,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
98
111
|
readonly external: boolean | undefined;
|
|
99
112
|
readonly packages: string[];
|
|
100
113
|
readonly useFoldersLayout: boolean | undefined;
|
|
114
|
+
readonly tsLikePackage: string | undefined;
|
|
101
115
|
} | U | U_1 | U_2 | U_3;
|
|
102
116
|
error(): string;
|
|
103
117
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -105,6 +119,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
105
119
|
readonly external: boolean | undefined;
|
|
106
120
|
readonly packages: string[];
|
|
107
121
|
readonly useFoldersLayout: boolean | undefined;
|
|
122
|
+
readonly tsLikePackage: string | undefined;
|
|
108
123
|
} | U | U_1 | U_2 | U_3>;
|
|
109
124
|
or<U_4>(x: U_4): {
|
|
110
125
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -112,6 +127,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
112
127
|
readonly external: boolean | undefined;
|
|
113
128
|
readonly packages: string[];
|
|
114
129
|
readonly useFoldersLayout: boolean | undefined;
|
|
130
|
+
readonly tsLikePackage: string | undefined;
|
|
115
131
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
116
132
|
success(): boolean;
|
|
117
133
|
unwrap(message?: string | undefined): {
|
|
@@ -119,6 +135,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
119
135
|
readonly external: boolean | undefined;
|
|
120
136
|
readonly packages: string[];
|
|
121
137
|
readonly useFoldersLayout: boolean | undefined;
|
|
138
|
+
readonly tsLikePackage: string | undefined;
|
|
122
139
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
123
140
|
error(): string;
|
|
124
141
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -126,6 +143,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
126
143
|
readonly external: boolean | undefined;
|
|
127
144
|
readonly packages: string[];
|
|
128
145
|
readonly useFoldersLayout: boolean | undefined;
|
|
146
|
+
readonly tsLikePackage: string | undefined;
|
|
129
147
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
130
148
|
or<U_5>(x: U_5): {
|
|
131
149
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -133,6 +151,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
133
151
|
readonly external: boolean | undefined;
|
|
134
152
|
readonly packages: string[];
|
|
135
153
|
readonly useFoldersLayout: boolean | undefined;
|
|
154
|
+
readonly tsLikePackage: string | undefined;
|
|
136
155
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
137
156
|
success(): boolean;
|
|
138
157
|
unwrap(message?: string | undefined): {
|
|
@@ -140,6 +159,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
140
159
|
readonly external: boolean | undefined;
|
|
141
160
|
readonly packages: string[];
|
|
142
161
|
readonly useFoldersLayout: boolean | undefined;
|
|
162
|
+
readonly tsLikePackage: string | undefined;
|
|
143
163
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
144
164
|
error(): string;
|
|
145
165
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -147,6 +167,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
147
167
|
readonly external: boolean | undefined;
|
|
148
168
|
readonly packages: string[];
|
|
149
169
|
readonly useFoldersLayout: boolean | undefined;
|
|
170
|
+
readonly tsLikePackage: string | undefined;
|
|
150
171
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
151
172
|
or<U_6>(x: U_6): {
|
|
152
173
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -154,6 +175,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
154
175
|
readonly external: boolean | undefined;
|
|
155
176
|
readonly packages: string[];
|
|
156
177
|
readonly useFoldersLayout: boolean | undefined;
|
|
178
|
+
readonly tsLikePackage: string | undefined;
|
|
157
179
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
158
180
|
success(): boolean;
|
|
159
181
|
unwrap(message?: string | undefined): {
|
|
@@ -161,6 +183,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
161
183
|
readonly external: boolean | undefined;
|
|
162
184
|
readonly packages: string[];
|
|
163
185
|
readonly useFoldersLayout: boolean | undefined;
|
|
186
|
+
readonly tsLikePackage: string | undefined;
|
|
164
187
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
165
188
|
error(): string;
|
|
166
189
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -168,6 +191,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
168
191
|
readonly external: boolean | undefined;
|
|
169
192
|
readonly packages: string[];
|
|
170
193
|
readonly useFoldersLayout: boolean | undefined;
|
|
194
|
+
readonly tsLikePackage: string | undefined;
|
|
171
195
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
172
196
|
or<U_7>(x: U_7): {
|
|
173
197
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -175,6 +199,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
175
199
|
readonly external: boolean | undefined;
|
|
176
200
|
readonly packages: string[];
|
|
177
201
|
readonly useFoldersLayout: boolean | undefined;
|
|
202
|
+
readonly tsLikePackage: string | undefined;
|
|
178
203
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
179
204
|
success(): boolean;
|
|
180
205
|
unwrap(message?: string | undefined): {
|
|
@@ -182,6 +207,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
182
207
|
readonly external: boolean | undefined;
|
|
183
208
|
readonly packages: string[];
|
|
184
209
|
readonly useFoldersLayout: boolean | undefined;
|
|
210
|
+
readonly tsLikePackage: string | undefined;
|
|
185
211
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
186
212
|
error(): string;
|
|
187
213
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -189,6 +215,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
189
215
|
readonly external: boolean | undefined;
|
|
190
216
|
readonly packages: string[];
|
|
191
217
|
readonly useFoldersLayout: boolean | undefined;
|
|
218
|
+
readonly tsLikePackage: string | undefined;
|
|
192
219
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
193
220
|
or<U_8>(x: U_8): {
|
|
194
221
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -196,6 +223,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
196
223
|
readonly external: boolean | undefined;
|
|
197
224
|
readonly packages: string[];
|
|
198
225
|
readonly useFoldersLayout: boolean | undefined;
|
|
226
|
+
readonly tsLikePackage: string | undefined;
|
|
199
227
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
200
228
|
success(): boolean;
|
|
201
229
|
unwrap(message?: string | undefined): {
|
|
@@ -203,6 +231,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
203
231
|
readonly external: boolean | undefined;
|
|
204
232
|
readonly packages: string[];
|
|
205
233
|
readonly useFoldersLayout: boolean | undefined;
|
|
234
|
+
readonly tsLikePackage: string | undefined;
|
|
206
235
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
207
236
|
error(): string;
|
|
208
237
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -210,6 +239,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
210
239
|
readonly external: boolean | undefined;
|
|
211
240
|
readonly packages: string[];
|
|
212
241
|
readonly useFoldersLayout: boolean | undefined;
|
|
242
|
+
readonly tsLikePackage: string | undefined;
|
|
213
243
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
214
244
|
or<U_9>(x: U_9): {
|
|
215
245
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -217,6 +247,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
217
247
|
readonly external: boolean | undefined;
|
|
218
248
|
readonly packages: string[];
|
|
219
249
|
readonly useFoldersLayout: boolean | undefined;
|
|
250
|
+
readonly tsLikePackage: string | undefined;
|
|
220
251
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
221
252
|
success(): boolean;
|
|
222
253
|
unwrap(message?: string | undefined): {
|
|
@@ -224,6 +255,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
224
255
|
readonly external: boolean | undefined;
|
|
225
256
|
readonly packages: string[];
|
|
226
257
|
readonly useFoldersLayout: boolean | undefined;
|
|
258
|
+
readonly tsLikePackage: string | undefined;
|
|
227
259
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
228
260
|
error(): string;
|
|
229
261
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -231,6 +263,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
231
263
|
readonly external: boolean | undefined;
|
|
232
264
|
readonly packages: string[];
|
|
233
265
|
readonly useFoldersLayout: boolean | undefined;
|
|
266
|
+
readonly tsLikePackage: string | undefined;
|
|
234
267
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
235
268
|
or<U_10>(x: U_10): any;
|
|
236
269
|
};
|
|
@@ -254,6 +287,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
254
287
|
readonly external: boolean | undefined;
|
|
255
288
|
readonly packages: string[];
|
|
256
289
|
readonly useFoldersLayout: boolean | undefined;
|
|
290
|
+
readonly tsLikePackage: string | undefined;
|
|
257
291
|
}>;
|
|
258
292
|
success(): boolean;
|
|
259
293
|
unwrap(message?: string | undefined): {
|
|
@@ -261,6 +295,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
261
295
|
readonly external: boolean | undefined;
|
|
262
296
|
readonly packages: string[];
|
|
263
297
|
readonly useFoldersLayout: boolean | undefined;
|
|
298
|
+
readonly tsLikePackage: string | undefined;
|
|
264
299
|
};
|
|
265
300
|
error(): string;
|
|
266
301
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -268,6 +303,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
268
303
|
readonly external: boolean | undefined;
|
|
269
304
|
readonly packages: string[];
|
|
270
305
|
readonly useFoldersLayout: boolean | undefined;
|
|
306
|
+
readonly tsLikePackage: string | undefined;
|
|
271
307
|
}>;
|
|
272
308
|
or<U>(x: U): {
|
|
273
309
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -275,6 +311,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
275
311
|
readonly external: boolean | undefined;
|
|
276
312
|
readonly packages: string[];
|
|
277
313
|
readonly useFoldersLayout: boolean | undefined;
|
|
314
|
+
readonly tsLikePackage: string | undefined;
|
|
278
315
|
} | U>;
|
|
279
316
|
success(): boolean;
|
|
280
317
|
unwrap(message?: string | undefined): {
|
|
@@ -282,6 +319,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
282
319
|
readonly external: boolean | undefined;
|
|
283
320
|
readonly packages: string[];
|
|
284
321
|
readonly useFoldersLayout: boolean | undefined;
|
|
322
|
+
readonly tsLikePackage: string | undefined;
|
|
285
323
|
} | U;
|
|
286
324
|
error(): string;
|
|
287
325
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -289,6 +327,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
289
327
|
readonly external: boolean | undefined;
|
|
290
328
|
readonly packages: string[];
|
|
291
329
|
readonly useFoldersLayout: boolean | undefined;
|
|
330
|
+
readonly tsLikePackage: string | undefined;
|
|
292
331
|
} | U>;
|
|
293
332
|
or<U_1>(x: U_1): {
|
|
294
333
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -296,6 +335,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
296
335
|
readonly external: boolean | undefined;
|
|
297
336
|
readonly packages: string[];
|
|
298
337
|
readonly useFoldersLayout: boolean | undefined;
|
|
338
|
+
readonly tsLikePackage: string | undefined;
|
|
299
339
|
} | U | U_1>;
|
|
300
340
|
success(): boolean;
|
|
301
341
|
unwrap(message?: string | undefined): {
|
|
@@ -303,6 +343,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
303
343
|
readonly external: boolean | undefined;
|
|
304
344
|
readonly packages: string[];
|
|
305
345
|
readonly useFoldersLayout: boolean | undefined;
|
|
346
|
+
readonly tsLikePackage: string | undefined;
|
|
306
347
|
} | U | U_1;
|
|
307
348
|
error(): string;
|
|
308
349
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -310,6 +351,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
310
351
|
readonly external: boolean | undefined;
|
|
311
352
|
readonly packages: string[];
|
|
312
353
|
readonly useFoldersLayout: boolean | undefined;
|
|
354
|
+
readonly tsLikePackage: string | undefined;
|
|
313
355
|
} | U | U_1>;
|
|
314
356
|
or<U_2>(x: U_2): {
|
|
315
357
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -317,6 +359,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
317
359
|
readonly external: boolean | undefined;
|
|
318
360
|
readonly packages: string[];
|
|
319
361
|
readonly useFoldersLayout: boolean | undefined;
|
|
362
|
+
readonly tsLikePackage: string | undefined;
|
|
320
363
|
} | U | U_1 | U_2>;
|
|
321
364
|
success(): boolean;
|
|
322
365
|
unwrap(message?: string | undefined): {
|
|
@@ -324,6 +367,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
324
367
|
readonly external: boolean | undefined;
|
|
325
368
|
readonly packages: string[];
|
|
326
369
|
readonly useFoldersLayout: boolean | undefined;
|
|
370
|
+
readonly tsLikePackage: string | undefined;
|
|
327
371
|
} | U | U_1 | U_2;
|
|
328
372
|
error(): string;
|
|
329
373
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -331,6 +375,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
331
375
|
readonly external: boolean | undefined;
|
|
332
376
|
readonly packages: string[];
|
|
333
377
|
readonly useFoldersLayout: boolean | undefined;
|
|
378
|
+
readonly tsLikePackage: string | undefined;
|
|
334
379
|
} | U | U_1 | U_2>;
|
|
335
380
|
or<U_3>(x: U_3): {
|
|
336
381
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -338,6 +383,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
338
383
|
readonly external: boolean | undefined;
|
|
339
384
|
readonly packages: string[];
|
|
340
385
|
readonly useFoldersLayout: boolean | undefined;
|
|
386
|
+
readonly tsLikePackage: string | undefined;
|
|
341
387
|
} | U | U_1 | U_2 | U_3>;
|
|
342
388
|
success(): boolean;
|
|
343
389
|
unwrap(message?: string | undefined): {
|
|
@@ -345,6 +391,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
345
391
|
readonly external: boolean | undefined;
|
|
346
392
|
readonly packages: string[];
|
|
347
393
|
readonly useFoldersLayout: boolean | undefined;
|
|
394
|
+
readonly tsLikePackage: string | undefined;
|
|
348
395
|
} | U | U_1 | U_2 | U_3;
|
|
349
396
|
error(): string;
|
|
350
397
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -352,6 +399,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
352
399
|
readonly external: boolean | undefined;
|
|
353
400
|
readonly packages: string[];
|
|
354
401
|
readonly useFoldersLayout: boolean | undefined;
|
|
402
|
+
readonly tsLikePackage: string | undefined;
|
|
355
403
|
} | U | U_1 | U_2 | U_3>;
|
|
356
404
|
or<U_4>(x: U_4): {
|
|
357
405
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -359,6 +407,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
359
407
|
readonly external: boolean | undefined;
|
|
360
408
|
readonly packages: string[];
|
|
361
409
|
readonly useFoldersLayout: boolean | undefined;
|
|
410
|
+
readonly tsLikePackage: string | undefined;
|
|
362
411
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
363
412
|
success(): boolean;
|
|
364
413
|
unwrap(message?: string | undefined): {
|
|
@@ -366,6 +415,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
366
415
|
readonly external: boolean | undefined;
|
|
367
416
|
readonly packages: string[];
|
|
368
417
|
readonly useFoldersLayout: boolean | undefined;
|
|
418
|
+
readonly tsLikePackage: string | undefined;
|
|
369
419
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
370
420
|
error(): string;
|
|
371
421
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -373,6 +423,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
373
423
|
readonly external: boolean | undefined;
|
|
374
424
|
readonly packages: string[];
|
|
375
425
|
readonly useFoldersLayout: boolean | undefined;
|
|
426
|
+
readonly tsLikePackage: string | undefined;
|
|
376
427
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
377
428
|
or<U_5>(x: U_5): {
|
|
378
429
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -380,6 +431,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
380
431
|
readonly external: boolean | undefined;
|
|
381
432
|
readonly packages: string[];
|
|
382
433
|
readonly useFoldersLayout: boolean | undefined;
|
|
434
|
+
readonly tsLikePackage: string | undefined;
|
|
383
435
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
384
436
|
success(): boolean;
|
|
385
437
|
unwrap(message?: string | undefined): {
|
|
@@ -387,6 +439,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
387
439
|
readonly external: boolean | undefined;
|
|
388
440
|
readonly packages: string[];
|
|
389
441
|
readonly useFoldersLayout: boolean | undefined;
|
|
442
|
+
readonly tsLikePackage: string | undefined;
|
|
390
443
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
391
444
|
error(): string;
|
|
392
445
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -394,6 +447,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
394
447
|
readonly external: boolean | undefined;
|
|
395
448
|
readonly packages: string[];
|
|
396
449
|
readonly useFoldersLayout: boolean | undefined;
|
|
450
|
+
readonly tsLikePackage: string | undefined;
|
|
397
451
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
398
452
|
or<U_6>(x: U_6): {
|
|
399
453
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -401,6 +455,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
401
455
|
readonly external: boolean | undefined;
|
|
402
456
|
readonly packages: string[];
|
|
403
457
|
readonly useFoldersLayout: boolean | undefined;
|
|
458
|
+
readonly tsLikePackage: string | undefined;
|
|
404
459
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
405
460
|
success(): boolean;
|
|
406
461
|
unwrap(message?: string | undefined): {
|
|
@@ -408,6 +463,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
408
463
|
readonly external: boolean | undefined;
|
|
409
464
|
readonly packages: string[];
|
|
410
465
|
readonly useFoldersLayout: boolean | undefined;
|
|
466
|
+
readonly tsLikePackage: string | undefined;
|
|
411
467
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
412
468
|
error(): string;
|
|
413
469
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -415,6 +471,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
415
471
|
readonly external: boolean | undefined;
|
|
416
472
|
readonly packages: string[];
|
|
417
473
|
readonly useFoldersLayout: boolean | undefined;
|
|
474
|
+
readonly tsLikePackage: string | undefined;
|
|
418
475
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
419
476
|
or<U_7>(x: U_7): {
|
|
420
477
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -422,6 +479,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
422
479
|
readonly external: boolean | undefined;
|
|
423
480
|
readonly packages: string[];
|
|
424
481
|
readonly useFoldersLayout: boolean | undefined;
|
|
482
|
+
readonly tsLikePackage: string | undefined;
|
|
425
483
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
426
484
|
success(): boolean;
|
|
427
485
|
unwrap(message?: string | undefined): {
|
|
@@ -429,6 +487,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
429
487
|
readonly external: boolean | undefined;
|
|
430
488
|
readonly packages: string[];
|
|
431
489
|
readonly useFoldersLayout: boolean | undefined;
|
|
490
|
+
readonly tsLikePackage: string | undefined;
|
|
432
491
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
433
492
|
error(): string;
|
|
434
493
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -436,6 +495,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
436
495
|
readonly external: boolean | undefined;
|
|
437
496
|
readonly packages: string[];
|
|
438
497
|
readonly useFoldersLayout: boolean | undefined;
|
|
498
|
+
readonly tsLikePackage: string | undefined;
|
|
439
499
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
440
500
|
or<U_8>(x: U_8): {
|
|
441
501
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -443,6 +503,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
443
503
|
readonly external: boolean | undefined;
|
|
444
504
|
readonly packages: string[];
|
|
445
505
|
readonly useFoldersLayout: boolean | undefined;
|
|
506
|
+
readonly tsLikePackage: string | undefined;
|
|
446
507
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
447
508
|
success(): boolean;
|
|
448
509
|
unwrap(message?: string | undefined): {
|
|
@@ -450,6 +511,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
450
511
|
readonly external: boolean | undefined;
|
|
451
512
|
readonly packages: string[];
|
|
452
513
|
readonly useFoldersLayout: boolean | undefined;
|
|
514
|
+
readonly tsLikePackage: string | undefined;
|
|
453
515
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
454
516
|
error(): string;
|
|
455
517
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -457,6 +519,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
457
519
|
readonly external: boolean | undefined;
|
|
458
520
|
readonly packages: string[];
|
|
459
521
|
readonly useFoldersLayout: boolean | undefined;
|
|
522
|
+
readonly tsLikePackage: string | undefined;
|
|
460
523
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
461
524
|
or<U_9>(x: U_9): {
|
|
462
525
|
box: import("./configDescriber").ValidationResult<{
|
|
@@ -464,6 +527,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
464
527
|
readonly external: boolean | undefined;
|
|
465
528
|
readonly packages: string[];
|
|
466
529
|
readonly useFoldersLayout: boolean | undefined;
|
|
530
|
+
readonly tsLikePackage: string | undefined;
|
|
467
531
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
468
532
|
success(): boolean;
|
|
469
533
|
unwrap(message?: string | undefined): {
|
|
@@ -471,6 +535,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
471
535
|
readonly external: boolean | undefined;
|
|
472
536
|
readonly packages: string[];
|
|
473
537
|
readonly useFoldersLayout: boolean | undefined;
|
|
538
|
+
readonly tsLikePackage: string | undefined;
|
|
474
539
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
475
540
|
error(): string;
|
|
476
541
|
get(): import("./configDescriber").ValidationResult<{
|
|
@@ -478,6 +543,7 @@ export declare const ModuleConfigurationSchema: {
|
|
|
478
543
|
readonly external: boolean | undefined;
|
|
479
544
|
readonly packages: string[];
|
|
480
545
|
readonly useFoldersLayout: boolean | undefined;
|
|
546
|
+
readonly tsLikePackage: string | undefined;
|
|
481
547
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
482
548
|
or<U_10>(x: U_10): any;
|
|
483
549
|
};
|
|
@@ -859,6 +925,370 @@ export declare const HookMethodSchema: {
|
|
|
859
925
|
$: import("./configDescriber").ConfigDescriberBaseConfig;
|
|
860
926
|
onMerge(strategy: "replace" | "merge"): any;
|
|
861
927
|
};
|
|
928
|
+
export declare const TransformOnSerializeSchema: {
|
|
929
|
+
schema: Record<string, {
|
|
930
|
+
validate: (x: unknown) => {
|
|
931
|
+
box: import("./configDescriber").ValidationResult<{
|
|
932
|
+
readonly from: string;
|
|
933
|
+
readonly to: string;
|
|
934
|
+
}>;
|
|
935
|
+
success(): boolean;
|
|
936
|
+
unwrap(message?: string | undefined): {
|
|
937
|
+
readonly from: string;
|
|
938
|
+
readonly to: string;
|
|
939
|
+
};
|
|
940
|
+
error(): string;
|
|
941
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
942
|
+
readonly from: string;
|
|
943
|
+
readonly to: string;
|
|
944
|
+
}>;
|
|
945
|
+
or<U>(x: U): {
|
|
946
|
+
box: import("./configDescriber").ValidationResult<{
|
|
947
|
+
readonly from: string;
|
|
948
|
+
readonly to: string;
|
|
949
|
+
} | U>;
|
|
950
|
+
success(): boolean;
|
|
951
|
+
unwrap(message?: string | undefined): {
|
|
952
|
+
readonly from: string;
|
|
953
|
+
readonly to: string;
|
|
954
|
+
} | U;
|
|
955
|
+
error(): string;
|
|
956
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
957
|
+
readonly from: string;
|
|
958
|
+
readonly to: string;
|
|
959
|
+
} | U>;
|
|
960
|
+
or<U_1>(x: U_1): {
|
|
961
|
+
box: import("./configDescriber").ValidationResult<{
|
|
962
|
+
readonly from: string;
|
|
963
|
+
readonly to: string;
|
|
964
|
+
} | U | U_1>;
|
|
965
|
+
success(): boolean;
|
|
966
|
+
unwrap(message?: string | undefined): {
|
|
967
|
+
readonly from: string;
|
|
968
|
+
readonly to: string;
|
|
969
|
+
} | U | U_1;
|
|
970
|
+
error(): string;
|
|
971
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
972
|
+
readonly from: string;
|
|
973
|
+
readonly to: string;
|
|
974
|
+
} | U | U_1>;
|
|
975
|
+
or<U_2>(x: U_2): {
|
|
976
|
+
box: import("./configDescriber").ValidationResult<{
|
|
977
|
+
readonly from: string;
|
|
978
|
+
readonly to: string;
|
|
979
|
+
} | U | U_1 | U_2>;
|
|
980
|
+
success(): boolean;
|
|
981
|
+
unwrap(message?: string | undefined): {
|
|
982
|
+
readonly from: string;
|
|
983
|
+
readonly to: string;
|
|
984
|
+
} | U | U_1 | U_2;
|
|
985
|
+
error(): string;
|
|
986
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
987
|
+
readonly from: string;
|
|
988
|
+
readonly to: string;
|
|
989
|
+
} | U | U_1 | U_2>;
|
|
990
|
+
or<U_3>(x: U_3): {
|
|
991
|
+
box: import("./configDescriber").ValidationResult<{
|
|
992
|
+
readonly from: string;
|
|
993
|
+
readonly to: string;
|
|
994
|
+
} | U | U_1 | U_2 | U_3>;
|
|
995
|
+
success(): boolean;
|
|
996
|
+
unwrap(message?: string | undefined): {
|
|
997
|
+
readonly from: string;
|
|
998
|
+
readonly to: string;
|
|
999
|
+
} | U | U_1 | U_2 | U_3;
|
|
1000
|
+
error(): string;
|
|
1001
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1002
|
+
readonly from: string;
|
|
1003
|
+
readonly to: string;
|
|
1004
|
+
} | U | U_1 | U_2 | U_3>;
|
|
1005
|
+
or<U_4>(x: U_4): {
|
|
1006
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1007
|
+
readonly from: string;
|
|
1008
|
+
readonly to: string;
|
|
1009
|
+
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1010
|
+
success(): boolean;
|
|
1011
|
+
unwrap(message?: string | undefined): {
|
|
1012
|
+
readonly from: string;
|
|
1013
|
+
readonly to: string;
|
|
1014
|
+
} | U | U_1 | U_2 | U_3 | U_4;
|
|
1015
|
+
error(): string;
|
|
1016
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1017
|
+
readonly from: string;
|
|
1018
|
+
readonly to: string;
|
|
1019
|
+
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1020
|
+
or<U_5>(x: U_5): {
|
|
1021
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1022
|
+
readonly from: string;
|
|
1023
|
+
readonly to: string;
|
|
1024
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1025
|
+
success(): boolean;
|
|
1026
|
+
unwrap(message?: string | undefined): {
|
|
1027
|
+
readonly from: string;
|
|
1028
|
+
readonly to: string;
|
|
1029
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
1030
|
+
error(): string;
|
|
1031
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1032
|
+
readonly from: string;
|
|
1033
|
+
readonly to: string;
|
|
1034
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1035
|
+
or<U_6>(x: U_6): {
|
|
1036
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1037
|
+
readonly from: string;
|
|
1038
|
+
readonly to: string;
|
|
1039
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1040
|
+
success(): boolean;
|
|
1041
|
+
unwrap(message?: string | undefined): {
|
|
1042
|
+
readonly from: string;
|
|
1043
|
+
readonly to: string;
|
|
1044
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
1045
|
+
error(): string;
|
|
1046
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1047
|
+
readonly from: string;
|
|
1048
|
+
readonly to: string;
|
|
1049
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1050
|
+
or<U_7>(x: U_7): {
|
|
1051
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1052
|
+
readonly from: string;
|
|
1053
|
+
readonly to: string;
|
|
1054
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1055
|
+
success(): boolean;
|
|
1056
|
+
unwrap(message?: string | undefined): {
|
|
1057
|
+
readonly from: string;
|
|
1058
|
+
readonly to: string;
|
|
1059
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
1060
|
+
error(): string;
|
|
1061
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1062
|
+
readonly from: string;
|
|
1063
|
+
readonly to: string;
|
|
1064
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1065
|
+
or<U_8>(x: U_8): {
|
|
1066
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1067
|
+
readonly from: string;
|
|
1068
|
+
readonly to: string;
|
|
1069
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1070
|
+
success(): boolean;
|
|
1071
|
+
unwrap(message?: string | undefined): {
|
|
1072
|
+
readonly from: string;
|
|
1073
|
+
readonly to: string;
|
|
1074
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
1075
|
+
error(): string;
|
|
1076
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1077
|
+
readonly from: string;
|
|
1078
|
+
readonly to: string;
|
|
1079
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1080
|
+
or<U_9>(x: U_9): {
|
|
1081
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1082
|
+
readonly from: string;
|
|
1083
|
+
readonly to: string;
|
|
1084
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1085
|
+
success(): boolean;
|
|
1086
|
+
unwrap(message?: string | undefined): {
|
|
1087
|
+
readonly from: string;
|
|
1088
|
+
readonly to: string;
|
|
1089
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
1090
|
+
error(): string;
|
|
1091
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1092
|
+
readonly from: string;
|
|
1093
|
+
readonly to: string;
|
|
1094
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1095
|
+
or<U_10>(x: U_10): any;
|
|
1096
|
+
};
|
|
1097
|
+
};
|
|
1098
|
+
};
|
|
1099
|
+
};
|
|
1100
|
+
};
|
|
1101
|
+
};
|
|
1102
|
+
};
|
|
1103
|
+
};
|
|
1104
|
+
};
|
|
1105
|
+
};
|
|
1106
|
+
};
|
|
1107
|
+
printSchema: () => import("./configDescriber").JsonSchemaNode;
|
|
1108
|
+
$: import("./configDescriber").ConfigDescriberBaseConfig;
|
|
1109
|
+
onMerge(strategy: "replace" | "merge"): any;
|
|
1110
|
+
}>;
|
|
1111
|
+
validate: (x: unknown) => {
|
|
1112
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1113
|
+
readonly from: string;
|
|
1114
|
+
readonly to: string;
|
|
1115
|
+
}>;
|
|
1116
|
+
success(): boolean;
|
|
1117
|
+
unwrap(message?: string | undefined): {
|
|
1118
|
+
readonly from: string;
|
|
1119
|
+
readonly to: string;
|
|
1120
|
+
};
|
|
1121
|
+
error(): string;
|
|
1122
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1123
|
+
readonly from: string;
|
|
1124
|
+
readonly to: string;
|
|
1125
|
+
}>;
|
|
1126
|
+
or<U>(x: U): {
|
|
1127
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1128
|
+
readonly from: string;
|
|
1129
|
+
readonly to: string;
|
|
1130
|
+
} | U>;
|
|
1131
|
+
success(): boolean;
|
|
1132
|
+
unwrap(message?: string | undefined): {
|
|
1133
|
+
readonly from: string;
|
|
1134
|
+
readonly to: string;
|
|
1135
|
+
} | U;
|
|
1136
|
+
error(): string;
|
|
1137
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1138
|
+
readonly from: string;
|
|
1139
|
+
readonly to: string;
|
|
1140
|
+
} | U>;
|
|
1141
|
+
or<U_1>(x: U_1): {
|
|
1142
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1143
|
+
readonly from: string;
|
|
1144
|
+
readonly to: string;
|
|
1145
|
+
} | U | U_1>;
|
|
1146
|
+
success(): boolean;
|
|
1147
|
+
unwrap(message?: string | undefined): {
|
|
1148
|
+
readonly from: string;
|
|
1149
|
+
readonly to: string;
|
|
1150
|
+
} | U | U_1;
|
|
1151
|
+
error(): string;
|
|
1152
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1153
|
+
readonly from: string;
|
|
1154
|
+
readonly to: string;
|
|
1155
|
+
} | U | U_1>;
|
|
1156
|
+
or<U_2>(x: U_2): {
|
|
1157
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1158
|
+
readonly from: string;
|
|
1159
|
+
readonly to: string;
|
|
1160
|
+
} | U | U_1 | U_2>;
|
|
1161
|
+
success(): boolean;
|
|
1162
|
+
unwrap(message?: string | undefined): {
|
|
1163
|
+
readonly from: string;
|
|
1164
|
+
readonly to: string;
|
|
1165
|
+
} | U | U_1 | U_2;
|
|
1166
|
+
error(): string;
|
|
1167
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1168
|
+
readonly from: string;
|
|
1169
|
+
readonly to: string;
|
|
1170
|
+
} | U | U_1 | U_2>;
|
|
1171
|
+
or<U_3>(x: U_3): {
|
|
1172
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1173
|
+
readonly from: string;
|
|
1174
|
+
readonly to: string;
|
|
1175
|
+
} | U | U_1 | U_2 | U_3>;
|
|
1176
|
+
success(): boolean;
|
|
1177
|
+
unwrap(message?: string | undefined): {
|
|
1178
|
+
readonly from: string;
|
|
1179
|
+
readonly to: string;
|
|
1180
|
+
} | U | U_1 | U_2 | U_3;
|
|
1181
|
+
error(): string;
|
|
1182
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1183
|
+
readonly from: string;
|
|
1184
|
+
readonly to: string;
|
|
1185
|
+
} | U | U_1 | U_2 | U_3>;
|
|
1186
|
+
or<U_4>(x: U_4): {
|
|
1187
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1188
|
+
readonly from: string;
|
|
1189
|
+
readonly to: string;
|
|
1190
|
+
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1191
|
+
success(): boolean;
|
|
1192
|
+
unwrap(message?: string | undefined): {
|
|
1193
|
+
readonly from: string;
|
|
1194
|
+
readonly to: string;
|
|
1195
|
+
} | U | U_1 | U_2 | U_3 | U_4;
|
|
1196
|
+
error(): string;
|
|
1197
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1198
|
+
readonly from: string;
|
|
1199
|
+
readonly to: string;
|
|
1200
|
+
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1201
|
+
or<U_5>(x: U_5): {
|
|
1202
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1203
|
+
readonly from: string;
|
|
1204
|
+
readonly to: string;
|
|
1205
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1206
|
+
success(): boolean;
|
|
1207
|
+
unwrap(message?: string | undefined): {
|
|
1208
|
+
readonly from: string;
|
|
1209
|
+
readonly to: string;
|
|
1210
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
1211
|
+
error(): string;
|
|
1212
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1213
|
+
readonly from: string;
|
|
1214
|
+
readonly to: string;
|
|
1215
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1216
|
+
or<U_6>(x: U_6): {
|
|
1217
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1218
|
+
readonly from: string;
|
|
1219
|
+
readonly to: string;
|
|
1220
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1221
|
+
success(): boolean;
|
|
1222
|
+
unwrap(message?: string | undefined): {
|
|
1223
|
+
readonly from: string;
|
|
1224
|
+
readonly to: string;
|
|
1225
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
1226
|
+
error(): string;
|
|
1227
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1228
|
+
readonly from: string;
|
|
1229
|
+
readonly to: string;
|
|
1230
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1231
|
+
or<U_7>(x: U_7): {
|
|
1232
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1233
|
+
readonly from: string;
|
|
1234
|
+
readonly to: string;
|
|
1235
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1236
|
+
success(): boolean;
|
|
1237
|
+
unwrap(message?: string | undefined): {
|
|
1238
|
+
readonly from: string;
|
|
1239
|
+
readonly to: string;
|
|
1240
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
1241
|
+
error(): string;
|
|
1242
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1243
|
+
readonly from: string;
|
|
1244
|
+
readonly to: string;
|
|
1245
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1246
|
+
or<U_8>(x: U_8): {
|
|
1247
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1248
|
+
readonly from: string;
|
|
1249
|
+
readonly to: string;
|
|
1250
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1251
|
+
success(): boolean;
|
|
1252
|
+
unwrap(message?: string | undefined): {
|
|
1253
|
+
readonly from: string;
|
|
1254
|
+
readonly to: string;
|
|
1255
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
1256
|
+
error(): string;
|
|
1257
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1258
|
+
readonly from: string;
|
|
1259
|
+
readonly to: string;
|
|
1260
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1261
|
+
or<U_9>(x: U_9): {
|
|
1262
|
+
box: import("./configDescriber").ValidationResult<{
|
|
1263
|
+
readonly from: string;
|
|
1264
|
+
readonly to: string;
|
|
1265
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1266
|
+
success(): boolean;
|
|
1267
|
+
unwrap(message?: string | undefined): {
|
|
1268
|
+
readonly from: string;
|
|
1269
|
+
readonly to: string;
|
|
1270
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
1271
|
+
error(): string;
|
|
1272
|
+
get(): import("./configDescriber").ValidationResult<{
|
|
1273
|
+
readonly from: string;
|
|
1274
|
+
readonly to: string;
|
|
1275
|
+
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1276
|
+
or<U_10>(x: U_10): any;
|
|
1277
|
+
};
|
|
1278
|
+
};
|
|
1279
|
+
};
|
|
1280
|
+
};
|
|
1281
|
+
};
|
|
1282
|
+
};
|
|
1283
|
+
};
|
|
1284
|
+
};
|
|
1285
|
+
};
|
|
1286
|
+
};
|
|
1287
|
+
};
|
|
1288
|
+
printSchema: () => import("./configDescriber").JsonSchemaNode;
|
|
1289
|
+
$: import("./configDescriber").ConfigDescriberBaseConfig;
|
|
1290
|
+
onMerge(strategy: "replace" | "merge"): any;
|
|
1291
|
+
};
|
|
862
1292
|
export type ModuleConfiguration = ConfigTypeInfer<typeof ModuleConfigurationSchema>;
|
|
863
1293
|
export declare const CoreConfigurationSchema: {
|
|
864
1294
|
schema: Record<string, {
|
|
@@ -868,6 +1298,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
868
1298
|
readonly TypePrefix: string;
|
|
869
1299
|
readonly LibraryPrefix: string;
|
|
870
1300
|
readonly OptionalPrefix: string;
|
|
1301
|
+
readonly transformOnSerialize: {
|
|
1302
|
+
readonly from: string;
|
|
1303
|
+
readonly to: string;
|
|
1304
|
+
}[];
|
|
871
1305
|
readonly rootComponents: string[];
|
|
872
1306
|
readonly standaloneComponents: string[];
|
|
873
1307
|
readonly parameterized: string[];
|
|
@@ -888,6 +1322,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
888
1322
|
readonly external: boolean | undefined;
|
|
889
1323
|
readonly packages: string[];
|
|
890
1324
|
readonly useFoldersLayout: boolean | undefined;
|
|
1325
|
+
readonly tsLikePackage: string | undefined;
|
|
891
1326
|
}>;
|
|
892
1327
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
893
1328
|
readonly globalPackages: string[];
|
|
@@ -898,6 +1333,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
898
1333
|
readonly TypePrefix: string;
|
|
899
1334
|
readonly LibraryPrefix: string;
|
|
900
1335
|
readonly OptionalPrefix: string;
|
|
1336
|
+
readonly transformOnSerialize: {
|
|
1337
|
+
readonly from: string;
|
|
1338
|
+
readonly to: string;
|
|
1339
|
+
}[];
|
|
901
1340
|
readonly rootComponents: string[];
|
|
902
1341
|
readonly standaloneComponents: string[];
|
|
903
1342
|
readonly parameterized: string[];
|
|
@@ -918,6 +1357,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
918
1357
|
readonly external: boolean | undefined;
|
|
919
1358
|
readonly packages: string[];
|
|
920
1359
|
readonly useFoldersLayout: boolean | undefined;
|
|
1360
|
+
readonly tsLikePackage: string | undefined;
|
|
921
1361
|
}>;
|
|
922
1362
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
923
1363
|
readonly globalPackages: string[];
|
|
@@ -928,6 +1368,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
928
1368
|
readonly TypePrefix: string;
|
|
929
1369
|
readonly LibraryPrefix: string;
|
|
930
1370
|
readonly OptionalPrefix: string;
|
|
1371
|
+
readonly transformOnSerialize: {
|
|
1372
|
+
readonly from: string;
|
|
1373
|
+
readonly to: string;
|
|
1374
|
+
}[];
|
|
931
1375
|
readonly rootComponents: string[];
|
|
932
1376
|
readonly standaloneComponents: string[];
|
|
933
1377
|
readonly parameterized: string[];
|
|
@@ -948,6 +1392,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
948
1392
|
readonly external: boolean | undefined;
|
|
949
1393
|
readonly packages: string[];
|
|
950
1394
|
readonly useFoldersLayout: boolean | undefined;
|
|
1395
|
+
readonly tsLikePackage: string | undefined;
|
|
951
1396
|
}>;
|
|
952
1397
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
953
1398
|
readonly globalPackages: string[];
|
|
@@ -958,6 +1403,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
958
1403
|
readonly TypePrefix: string;
|
|
959
1404
|
readonly LibraryPrefix: string;
|
|
960
1405
|
readonly OptionalPrefix: string;
|
|
1406
|
+
readonly transformOnSerialize: {
|
|
1407
|
+
readonly from: string;
|
|
1408
|
+
readonly to: string;
|
|
1409
|
+
}[];
|
|
961
1410
|
readonly rootComponents: string[];
|
|
962
1411
|
readonly standaloneComponents: string[];
|
|
963
1412
|
readonly parameterized: string[];
|
|
@@ -978,6 +1427,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
978
1427
|
readonly external: boolean | undefined;
|
|
979
1428
|
readonly packages: string[];
|
|
980
1429
|
readonly useFoldersLayout: boolean | undefined;
|
|
1430
|
+
readonly tsLikePackage: string | undefined;
|
|
981
1431
|
}>;
|
|
982
1432
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
983
1433
|
readonly globalPackages: string[];
|
|
@@ -988,6 +1438,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
988
1438
|
readonly TypePrefix: string;
|
|
989
1439
|
readonly LibraryPrefix: string;
|
|
990
1440
|
readonly OptionalPrefix: string;
|
|
1441
|
+
readonly transformOnSerialize: {
|
|
1442
|
+
readonly from: string;
|
|
1443
|
+
readonly to: string;
|
|
1444
|
+
}[];
|
|
991
1445
|
readonly rootComponents: string[];
|
|
992
1446
|
readonly standaloneComponents: string[];
|
|
993
1447
|
readonly parameterized: string[];
|
|
@@ -1008,6 +1462,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1008
1462
|
readonly external: boolean | undefined;
|
|
1009
1463
|
readonly packages: string[];
|
|
1010
1464
|
readonly useFoldersLayout: boolean | undefined;
|
|
1465
|
+
readonly tsLikePackage: string | undefined;
|
|
1011
1466
|
}>;
|
|
1012
1467
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1013
1468
|
readonly globalPackages: string[];
|
|
@@ -1018,6 +1473,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1018
1473
|
readonly TypePrefix: string;
|
|
1019
1474
|
readonly LibraryPrefix: string;
|
|
1020
1475
|
readonly OptionalPrefix: string;
|
|
1476
|
+
readonly transformOnSerialize: {
|
|
1477
|
+
readonly from: string;
|
|
1478
|
+
readonly to: string;
|
|
1479
|
+
}[];
|
|
1021
1480
|
readonly rootComponents: string[];
|
|
1022
1481
|
readonly standaloneComponents: string[];
|
|
1023
1482
|
readonly parameterized: string[];
|
|
@@ -1038,6 +1497,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1038
1497
|
readonly external: boolean | undefined;
|
|
1039
1498
|
readonly packages: string[];
|
|
1040
1499
|
readonly useFoldersLayout: boolean | undefined;
|
|
1500
|
+
readonly tsLikePackage: string | undefined;
|
|
1041
1501
|
}>;
|
|
1042
1502
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1043
1503
|
readonly globalPackages: string[];
|
|
@@ -1048,6 +1508,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1048
1508
|
readonly TypePrefix: string;
|
|
1049
1509
|
readonly LibraryPrefix: string;
|
|
1050
1510
|
readonly OptionalPrefix: string;
|
|
1511
|
+
readonly transformOnSerialize: {
|
|
1512
|
+
readonly from: string;
|
|
1513
|
+
readonly to: string;
|
|
1514
|
+
}[];
|
|
1051
1515
|
readonly rootComponents: string[];
|
|
1052
1516
|
readonly standaloneComponents: string[];
|
|
1053
1517
|
readonly parameterized: string[];
|
|
@@ -1068,6 +1532,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1068
1532
|
readonly external: boolean | undefined;
|
|
1069
1533
|
readonly packages: string[];
|
|
1070
1534
|
readonly useFoldersLayout: boolean | undefined;
|
|
1535
|
+
readonly tsLikePackage: string | undefined;
|
|
1071
1536
|
}>;
|
|
1072
1537
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1073
1538
|
readonly globalPackages: string[];
|
|
@@ -1078,6 +1543,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1078
1543
|
readonly TypePrefix: string;
|
|
1079
1544
|
readonly LibraryPrefix: string;
|
|
1080
1545
|
readonly OptionalPrefix: string;
|
|
1546
|
+
readonly transformOnSerialize: {
|
|
1547
|
+
readonly from: string;
|
|
1548
|
+
readonly to: string;
|
|
1549
|
+
}[];
|
|
1081
1550
|
readonly rootComponents: string[];
|
|
1082
1551
|
readonly standaloneComponents: string[];
|
|
1083
1552
|
readonly parameterized: string[];
|
|
@@ -1098,6 +1567,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1098
1567
|
readonly external: boolean | undefined;
|
|
1099
1568
|
readonly packages: string[];
|
|
1100
1569
|
readonly useFoldersLayout: boolean | undefined;
|
|
1570
|
+
readonly tsLikePackage: string | undefined;
|
|
1101
1571
|
}>;
|
|
1102
1572
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1103
1573
|
readonly globalPackages: string[];
|
|
@@ -1108,6 +1578,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1108
1578
|
readonly TypePrefix: string;
|
|
1109
1579
|
readonly LibraryPrefix: string;
|
|
1110
1580
|
readonly OptionalPrefix: string;
|
|
1581
|
+
readonly transformOnSerialize: {
|
|
1582
|
+
readonly from: string;
|
|
1583
|
+
readonly to: string;
|
|
1584
|
+
}[];
|
|
1111
1585
|
readonly rootComponents: string[];
|
|
1112
1586
|
readonly standaloneComponents: string[];
|
|
1113
1587
|
readonly parameterized: string[];
|
|
@@ -1128,6 +1602,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1128
1602
|
readonly external: boolean | undefined;
|
|
1129
1603
|
readonly packages: string[];
|
|
1130
1604
|
readonly useFoldersLayout: boolean | undefined;
|
|
1605
|
+
readonly tsLikePackage: string | undefined;
|
|
1131
1606
|
}>;
|
|
1132
1607
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1133
1608
|
readonly globalPackages: string[];
|
|
@@ -1138,6 +1613,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1138
1613
|
readonly TypePrefix: string;
|
|
1139
1614
|
readonly LibraryPrefix: string;
|
|
1140
1615
|
readonly OptionalPrefix: string;
|
|
1616
|
+
readonly transformOnSerialize: {
|
|
1617
|
+
readonly from: string;
|
|
1618
|
+
readonly to: string;
|
|
1619
|
+
}[];
|
|
1141
1620
|
readonly rootComponents: string[];
|
|
1142
1621
|
readonly standaloneComponents: string[];
|
|
1143
1622
|
readonly parameterized: string[];
|
|
@@ -1158,6 +1637,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1158
1637
|
readonly external: boolean | undefined;
|
|
1159
1638
|
readonly packages: string[];
|
|
1160
1639
|
readonly useFoldersLayout: boolean | undefined;
|
|
1640
|
+
readonly tsLikePackage: string | undefined;
|
|
1161
1641
|
}>;
|
|
1162
1642
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1163
1643
|
readonly globalPackages: string[];
|
|
@@ -1168,6 +1648,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1168
1648
|
readonly TypePrefix: string;
|
|
1169
1649
|
readonly LibraryPrefix: string;
|
|
1170
1650
|
readonly OptionalPrefix: string;
|
|
1651
|
+
readonly transformOnSerialize: {
|
|
1652
|
+
readonly from: string;
|
|
1653
|
+
readonly to: string;
|
|
1654
|
+
}[];
|
|
1171
1655
|
readonly rootComponents: string[];
|
|
1172
1656
|
readonly standaloneComponents: string[];
|
|
1173
1657
|
readonly parameterized: string[];
|
|
@@ -1188,6 +1672,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1188
1672
|
readonly external: boolean | undefined;
|
|
1189
1673
|
readonly packages: string[];
|
|
1190
1674
|
readonly useFoldersLayout: boolean | undefined;
|
|
1675
|
+
readonly tsLikePackage: string | undefined;
|
|
1191
1676
|
}>;
|
|
1192
1677
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1193
1678
|
readonly globalPackages: string[];
|
|
@@ -1198,6 +1683,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1198
1683
|
readonly TypePrefix: string;
|
|
1199
1684
|
readonly LibraryPrefix: string;
|
|
1200
1685
|
readonly OptionalPrefix: string;
|
|
1686
|
+
readonly transformOnSerialize: {
|
|
1687
|
+
readonly from: string;
|
|
1688
|
+
readonly to: string;
|
|
1689
|
+
}[];
|
|
1201
1690
|
readonly rootComponents: string[];
|
|
1202
1691
|
readonly standaloneComponents: string[];
|
|
1203
1692
|
readonly parameterized: string[];
|
|
@@ -1218,6 +1707,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1218
1707
|
readonly external: boolean | undefined;
|
|
1219
1708
|
readonly packages: string[];
|
|
1220
1709
|
readonly useFoldersLayout: boolean | undefined;
|
|
1710
|
+
readonly tsLikePackage: string | undefined;
|
|
1221
1711
|
}>;
|
|
1222
1712
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1223
1713
|
readonly globalPackages: string[];
|
|
@@ -1228,6 +1718,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1228
1718
|
readonly TypePrefix: string;
|
|
1229
1719
|
readonly LibraryPrefix: string;
|
|
1230
1720
|
readonly OptionalPrefix: string;
|
|
1721
|
+
readonly transformOnSerialize: {
|
|
1722
|
+
readonly from: string;
|
|
1723
|
+
readonly to: string;
|
|
1724
|
+
}[];
|
|
1231
1725
|
readonly rootComponents: string[];
|
|
1232
1726
|
readonly standaloneComponents: string[];
|
|
1233
1727
|
readonly parameterized: string[];
|
|
@@ -1248,6 +1742,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1248
1742
|
readonly external: boolean | undefined;
|
|
1249
1743
|
readonly packages: string[];
|
|
1250
1744
|
readonly useFoldersLayout: boolean | undefined;
|
|
1745
|
+
readonly tsLikePackage: string | undefined;
|
|
1251
1746
|
}>;
|
|
1252
1747
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1253
1748
|
readonly globalPackages: string[];
|
|
@@ -1258,6 +1753,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1258
1753
|
readonly TypePrefix: string;
|
|
1259
1754
|
readonly LibraryPrefix: string;
|
|
1260
1755
|
readonly OptionalPrefix: string;
|
|
1756
|
+
readonly transformOnSerialize: {
|
|
1757
|
+
readonly from: string;
|
|
1758
|
+
readonly to: string;
|
|
1759
|
+
}[];
|
|
1261
1760
|
readonly rootComponents: string[];
|
|
1262
1761
|
readonly standaloneComponents: string[];
|
|
1263
1762
|
readonly parameterized: string[];
|
|
@@ -1278,6 +1777,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1278
1777
|
readonly external: boolean | undefined;
|
|
1279
1778
|
readonly packages: string[];
|
|
1280
1779
|
readonly useFoldersLayout: boolean | undefined;
|
|
1780
|
+
readonly tsLikePackage: string | undefined;
|
|
1281
1781
|
}>;
|
|
1282
1782
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1283
1783
|
readonly globalPackages: string[];
|
|
@@ -1288,6 +1788,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1288
1788
|
readonly TypePrefix: string;
|
|
1289
1789
|
readonly LibraryPrefix: string;
|
|
1290
1790
|
readonly OptionalPrefix: string;
|
|
1791
|
+
readonly transformOnSerialize: {
|
|
1792
|
+
readonly from: string;
|
|
1793
|
+
readonly to: string;
|
|
1794
|
+
}[];
|
|
1291
1795
|
readonly rootComponents: string[];
|
|
1292
1796
|
readonly standaloneComponents: string[];
|
|
1293
1797
|
readonly parameterized: string[];
|
|
@@ -1308,6 +1812,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1308
1812
|
readonly external: boolean | undefined;
|
|
1309
1813
|
readonly packages: string[];
|
|
1310
1814
|
readonly useFoldersLayout: boolean | undefined;
|
|
1815
|
+
readonly tsLikePackage: string | undefined;
|
|
1311
1816
|
}>;
|
|
1312
1817
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1313
1818
|
readonly globalPackages: string[];
|
|
@@ -1318,6 +1823,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1318
1823
|
readonly TypePrefix: string;
|
|
1319
1824
|
readonly LibraryPrefix: string;
|
|
1320
1825
|
readonly OptionalPrefix: string;
|
|
1826
|
+
readonly transformOnSerialize: {
|
|
1827
|
+
readonly from: string;
|
|
1828
|
+
readonly to: string;
|
|
1829
|
+
}[];
|
|
1321
1830
|
readonly rootComponents: string[];
|
|
1322
1831
|
readonly standaloneComponents: string[];
|
|
1323
1832
|
readonly parameterized: string[];
|
|
@@ -1338,6 +1847,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1338
1847
|
readonly external: boolean | undefined;
|
|
1339
1848
|
readonly packages: string[];
|
|
1340
1849
|
readonly useFoldersLayout: boolean | undefined;
|
|
1850
|
+
readonly tsLikePackage: string | undefined;
|
|
1341
1851
|
}>;
|
|
1342
1852
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1343
1853
|
readonly globalPackages: string[];
|
|
@@ -1348,6 +1858,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1348
1858
|
readonly TypePrefix: string;
|
|
1349
1859
|
readonly LibraryPrefix: string;
|
|
1350
1860
|
readonly OptionalPrefix: string;
|
|
1861
|
+
readonly transformOnSerialize: {
|
|
1862
|
+
readonly from: string;
|
|
1863
|
+
readonly to: string;
|
|
1864
|
+
}[];
|
|
1351
1865
|
readonly rootComponents: string[];
|
|
1352
1866
|
readonly standaloneComponents: string[];
|
|
1353
1867
|
readonly parameterized: string[];
|
|
@@ -1368,6 +1882,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1368
1882
|
readonly external: boolean | undefined;
|
|
1369
1883
|
readonly packages: string[];
|
|
1370
1884
|
readonly useFoldersLayout: boolean | undefined;
|
|
1885
|
+
readonly tsLikePackage: string | undefined;
|
|
1371
1886
|
}>;
|
|
1372
1887
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1373
1888
|
readonly globalPackages: string[];
|
|
@@ -1378,6 +1893,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1378
1893
|
readonly TypePrefix: string;
|
|
1379
1894
|
readonly LibraryPrefix: string;
|
|
1380
1895
|
readonly OptionalPrefix: string;
|
|
1896
|
+
readonly transformOnSerialize: {
|
|
1897
|
+
readonly from: string;
|
|
1898
|
+
readonly to: string;
|
|
1899
|
+
}[];
|
|
1381
1900
|
readonly rootComponents: string[];
|
|
1382
1901
|
readonly standaloneComponents: string[];
|
|
1383
1902
|
readonly parameterized: string[];
|
|
@@ -1398,6 +1917,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1398
1917
|
readonly external: boolean | undefined;
|
|
1399
1918
|
readonly packages: string[];
|
|
1400
1919
|
readonly useFoldersLayout: boolean | undefined;
|
|
1920
|
+
readonly tsLikePackage: string | undefined;
|
|
1401
1921
|
}>;
|
|
1402
1922
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1403
1923
|
readonly globalPackages: string[];
|
|
@@ -1408,6 +1928,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1408
1928
|
readonly TypePrefix: string;
|
|
1409
1929
|
readonly LibraryPrefix: string;
|
|
1410
1930
|
readonly OptionalPrefix: string;
|
|
1931
|
+
readonly transformOnSerialize: {
|
|
1932
|
+
readonly from: string;
|
|
1933
|
+
readonly to: string;
|
|
1934
|
+
}[];
|
|
1411
1935
|
readonly rootComponents: string[];
|
|
1412
1936
|
readonly standaloneComponents: string[];
|
|
1413
1937
|
readonly parameterized: string[];
|
|
@@ -1428,6 +1952,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1428
1952
|
readonly external: boolean | undefined;
|
|
1429
1953
|
readonly packages: string[];
|
|
1430
1954
|
readonly useFoldersLayout: boolean | undefined;
|
|
1955
|
+
readonly tsLikePackage: string | undefined;
|
|
1431
1956
|
}>;
|
|
1432
1957
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1433
1958
|
readonly globalPackages: string[];
|
|
@@ -1438,6 +1963,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1438
1963
|
readonly TypePrefix: string;
|
|
1439
1964
|
readonly LibraryPrefix: string;
|
|
1440
1965
|
readonly OptionalPrefix: string;
|
|
1966
|
+
readonly transformOnSerialize: {
|
|
1967
|
+
readonly from: string;
|
|
1968
|
+
readonly to: string;
|
|
1969
|
+
}[];
|
|
1441
1970
|
readonly rootComponents: string[];
|
|
1442
1971
|
readonly standaloneComponents: string[];
|
|
1443
1972
|
readonly parameterized: string[];
|
|
@@ -1458,6 +1987,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1458
1987
|
readonly external: boolean | undefined;
|
|
1459
1988
|
readonly packages: string[];
|
|
1460
1989
|
readonly useFoldersLayout: boolean | undefined;
|
|
1990
|
+
readonly tsLikePackage: string | undefined;
|
|
1461
1991
|
}>;
|
|
1462
1992
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1463
1993
|
readonly globalPackages: string[];
|
|
@@ -1468,6 +1998,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1468
1998
|
readonly TypePrefix: string;
|
|
1469
1999
|
readonly LibraryPrefix: string;
|
|
1470
2000
|
readonly OptionalPrefix: string;
|
|
2001
|
+
readonly transformOnSerialize: {
|
|
2002
|
+
readonly from: string;
|
|
2003
|
+
readonly to: string;
|
|
2004
|
+
}[];
|
|
1471
2005
|
readonly rootComponents: string[];
|
|
1472
2006
|
readonly standaloneComponents: string[];
|
|
1473
2007
|
readonly parameterized: string[];
|
|
@@ -1488,6 +2022,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1488
2022
|
readonly external: boolean | undefined;
|
|
1489
2023
|
readonly packages: string[];
|
|
1490
2024
|
readonly useFoldersLayout: boolean | undefined;
|
|
2025
|
+
readonly tsLikePackage: string | undefined;
|
|
1491
2026
|
}>;
|
|
1492
2027
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1493
2028
|
readonly globalPackages: string[];
|
|
@@ -1498,6 +2033,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1498
2033
|
readonly TypePrefix: string;
|
|
1499
2034
|
readonly LibraryPrefix: string;
|
|
1500
2035
|
readonly OptionalPrefix: string;
|
|
2036
|
+
readonly transformOnSerialize: {
|
|
2037
|
+
readonly from: string;
|
|
2038
|
+
readonly to: string;
|
|
2039
|
+
}[];
|
|
1501
2040
|
readonly rootComponents: string[];
|
|
1502
2041
|
readonly standaloneComponents: string[];
|
|
1503
2042
|
readonly parameterized: string[];
|
|
@@ -1518,6 +2057,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1518
2057
|
readonly external: boolean | undefined;
|
|
1519
2058
|
readonly packages: string[];
|
|
1520
2059
|
readonly useFoldersLayout: boolean | undefined;
|
|
2060
|
+
readonly tsLikePackage: string | undefined;
|
|
1521
2061
|
}>;
|
|
1522
2062
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1523
2063
|
readonly globalPackages: string[];
|
|
@@ -1528,6 +2068,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1528
2068
|
readonly TypePrefix: string;
|
|
1529
2069
|
readonly LibraryPrefix: string;
|
|
1530
2070
|
readonly OptionalPrefix: string;
|
|
2071
|
+
readonly transformOnSerialize: {
|
|
2072
|
+
readonly from: string;
|
|
2073
|
+
readonly to: string;
|
|
2074
|
+
}[];
|
|
1531
2075
|
readonly rootComponents: string[];
|
|
1532
2076
|
readonly standaloneComponents: string[];
|
|
1533
2077
|
readonly parameterized: string[];
|
|
@@ -1548,6 +2092,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1548
2092
|
readonly external: boolean | undefined;
|
|
1549
2093
|
readonly packages: string[];
|
|
1550
2094
|
readonly useFoldersLayout: boolean | undefined;
|
|
2095
|
+
readonly tsLikePackage: string | undefined;
|
|
1551
2096
|
}>;
|
|
1552
2097
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1553
2098
|
readonly globalPackages: string[];
|
|
@@ -1558,6 +2103,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1558
2103
|
readonly TypePrefix: string;
|
|
1559
2104
|
readonly LibraryPrefix: string;
|
|
1560
2105
|
readonly OptionalPrefix: string;
|
|
2106
|
+
readonly transformOnSerialize: {
|
|
2107
|
+
readonly from: string;
|
|
2108
|
+
readonly to: string;
|
|
2109
|
+
}[];
|
|
1561
2110
|
readonly rootComponents: string[];
|
|
1562
2111
|
readonly standaloneComponents: string[];
|
|
1563
2112
|
readonly parameterized: string[];
|
|
@@ -1578,6 +2127,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1578
2127
|
readonly external: boolean | undefined;
|
|
1579
2128
|
readonly packages: string[];
|
|
1580
2129
|
readonly useFoldersLayout: boolean | undefined;
|
|
2130
|
+
readonly tsLikePackage: string | undefined;
|
|
1581
2131
|
}>;
|
|
1582
2132
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1583
2133
|
readonly globalPackages: string[];
|
|
@@ -1588,6 +2138,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1588
2138
|
readonly TypePrefix: string;
|
|
1589
2139
|
readonly LibraryPrefix: string;
|
|
1590
2140
|
readonly OptionalPrefix: string;
|
|
2141
|
+
readonly transformOnSerialize: {
|
|
2142
|
+
readonly from: string;
|
|
2143
|
+
readonly to: string;
|
|
2144
|
+
}[];
|
|
1591
2145
|
readonly rootComponents: string[];
|
|
1592
2146
|
readonly standaloneComponents: string[];
|
|
1593
2147
|
readonly parameterized: string[];
|
|
@@ -1608,6 +2162,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1608
2162
|
readonly external: boolean | undefined;
|
|
1609
2163
|
readonly packages: string[];
|
|
1610
2164
|
readonly useFoldersLayout: boolean | undefined;
|
|
2165
|
+
readonly tsLikePackage: string | undefined;
|
|
1611
2166
|
}>;
|
|
1612
2167
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1613
2168
|
readonly globalPackages: string[];
|
|
@@ -1618,6 +2173,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1618
2173
|
readonly TypePrefix: string;
|
|
1619
2174
|
readonly LibraryPrefix: string;
|
|
1620
2175
|
readonly OptionalPrefix: string;
|
|
2176
|
+
readonly transformOnSerialize: {
|
|
2177
|
+
readonly from: string;
|
|
2178
|
+
readonly to: string;
|
|
2179
|
+
}[];
|
|
1621
2180
|
readonly rootComponents: string[];
|
|
1622
2181
|
readonly standaloneComponents: string[];
|
|
1623
2182
|
readonly parameterized: string[];
|
|
@@ -1638,6 +2197,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1638
2197
|
readonly external: boolean | undefined;
|
|
1639
2198
|
readonly packages: string[];
|
|
1640
2199
|
readonly useFoldersLayout: boolean | undefined;
|
|
2200
|
+
readonly tsLikePackage: string | undefined;
|
|
1641
2201
|
}>;
|
|
1642
2202
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1643
2203
|
readonly globalPackages: string[];
|
|
@@ -1648,6 +2208,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1648
2208
|
readonly TypePrefix: string;
|
|
1649
2209
|
readonly LibraryPrefix: string;
|
|
1650
2210
|
readonly OptionalPrefix: string;
|
|
2211
|
+
readonly transformOnSerialize: {
|
|
2212
|
+
readonly from: string;
|
|
2213
|
+
readonly to: string;
|
|
2214
|
+
}[];
|
|
1651
2215
|
readonly rootComponents: string[];
|
|
1652
2216
|
readonly standaloneComponents: string[];
|
|
1653
2217
|
readonly parameterized: string[];
|
|
@@ -1668,6 +2232,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1668
2232
|
readonly external: boolean | undefined;
|
|
1669
2233
|
readonly packages: string[];
|
|
1670
2234
|
readonly useFoldersLayout: boolean | undefined;
|
|
2235
|
+
readonly tsLikePackage: string | undefined;
|
|
1671
2236
|
}>;
|
|
1672
2237
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1673
2238
|
readonly globalPackages: string[];
|
|
@@ -1678,6 +2243,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1678
2243
|
readonly TypePrefix: string;
|
|
1679
2244
|
readonly LibraryPrefix: string;
|
|
1680
2245
|
readonly OptionalPrefix: string;
|
|
2246
|
+
readonly transformOnSerialize: {
|
|
2247
|
+
readonly from: string;
|
|
2248
|
+
readonly to: string;
|
|
2249
|
+
}[];
|
|
1681
2250
|
readonly rootComponents: string[];
|
|
1682
2251
|
readonly standaloneComponents: string[];
|
|
1683
2252
|
readonly parameterized: string[];
|
|
@@ -1698,6 +2267,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1698
2267
|
readonly external: boolean | undefined;
|
|
1699
2268
|
readonly packages: string[];
|
|
1700
2269
|
readonly useFoldersLayout: boolean | undefined;
|
|
2270
|
+
readonly tsLikePackage: string | undefined;
|
|
1701
2271
|
}>;
|
|
1702
2272
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1703
2273
|
readonly globalPackages: string[];
|
|
@@ -1708,6 +2278,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1708
2278
|
readonly TypePrefix: string;
|
|
1709
2279
|
readonly LibraryPrefix: string;
|
|
1710
2280
|
readonly OptionalPrefix: string;
|
|
2281
|
+
readonly transformOnSerialize: {
|
|
2282
|
+
readonly from: string;
|
|
2283
|
+
readonly to: string;
|
|
2284
|
+
}[];
|
|
1711
2285
|
readonly rootComponents: string[];
|
|
1712
2286
|
readonly standaloneComponents: string[];
|
|
1713
2287
|
readonly parameterized: string[];
|
|
@@ -1728,6 +2302,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1728
2302
|
readonly external: boolean | undefined;
|
|
1729
2303
|
readonly packages: string[];
|
|
1730
2304
|
readonly useFoldersLayout: boolean | undefined;
|
|
2305
|
+
readonly tsLikePackage: string | undefined;
|
|
1731
2306
|
}>;
|
|
1732
2307
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1733
2308
|
readonly globalPackages: string[];
|
|
@@ -1738,6 +2313,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1738
2313
|
readonly TypePrefix: string;
|
|
1739
2314
|
readonly LibraryPrefix: string;
|
|
1740
2315
|
readonly OptionalPrefix: string;
|
|
2316
|
+
readonly transformOnSerialize: {
|
|
2317
|
+
readonly from: string;
|
|
2318
|
+
readonly to: string;
|
|
2319
|
+
}[];
|
|
1741
2320
|
readonly rootComponents: string[];
|
|
1742
2321
|
readonly standaloneComponents: string[];
|
|
1743
2322
|
readonly parameterized: string[];
|
|
@@ -1758,6 +2337,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1758
2337
|
readonly external: boolean | undefined;
|
|
1759
2338
|
readonly packages: string[];
|
|
1760
2339
|
readonly useFoldersLayout: boolean | undefined;
|
|
2340
|
+
readonly tsLikePackage: string | undefined;
|
|
1761
2341
|
}>;
|
|
1762
2342
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1763
2343
|
readonly globalPackages: string[];
|
|
@@ -1768,6 +2348,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1768
2348
|
readonly TypePrefix: string;
|
|
1769
2349
|
readonly LibraryPrefix: string;
|
|
1770
2350
|
readonly OptionalPrefix: string;
|
|
2351
|
+
readonly transformOnSerialize: {
|
|
2352
|
+
readonly from: string;
|
|
2353
|
+
readonly to: string;
|
|
2354
|
+
}[];
|
|
1771
2355
|
readonly rootComponents: string[];
|
|
1772
2356
|
readonly standaloneComponents: string[];
|
|
1773
2357
|
readonly parameterized: string[];
|
|
@@ -1788,6 +2372,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1788
2372
|
readonly external: boolean | undefined;
|
|
1789
2373
|
readonly packages: string[];
|
|
1790
2374
|
readonly useFoldersLayout: boolean | undefined;
|
|
2375
|
+
readonly tsLikePackage: string | undefined;
|
|
1791
2376
|
}>;
|
|
1792
2377
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1793
2378
|
readonly globalPackages: string[];
|
|
@@ -1798,6 +2383,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1798
2383
|
readonly TypePrefix: string;
|
|
1799
2384
|
readonly LibraryPrefix: string;
|
|
1800
2385
|
readonly OptionalPrefix: string;
|
|
2386
|
+
readonly transformOnSerialize: {
|
|
2387
|
+
readonly from: string;
|
|
2388
|
+
readonly to: string;
|
|
2389
|
+
}[];
|
|
1801
2390
|
readonly rootComponents: string[];
|
|
1802
2391
|
readonly standaloneComponents: string[];
|
|
1803
2392
|
readonly parameterized: string[];
|
|
@@ -1818,6 +2407,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1818
2407
|
readonly external: boolean | undefined;
|
|
1819
2408
|
readonly packages: string[];
|
|
1820
2409
|
readonly useFoldersLayout: boolean | undefined;
|
|
2410
|
+
readonly tsLikePackage: string | undefined;
|
|
1821
2411
|
}>;
|
|
1822
2412
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1823
2413
|
readonly globalPackages: string[];
|
|
@@ -1828,6 +2418,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1828
2418
|
readonly TypePrefix: string;
|
|
1829
2419
|
readonly LibraryPrefix: string;
|
|
1830
2420
|
readonly OptionalPrefix: string;
|
|
2421
|
+
readonly transformOnSerialize: {
|
|
2422
|
+
readonly from: string;
|
|
2423
|
+
readonly to: string;
|
|
2424
|
+
}[];
|
|
1831
2425
|
readonly rootComponents: string[];
|
|
1832
2426
|
readonly standaloneComponents: string[];
|
|
1833
2427
|
readonly parameterized: string[];
|
|
@@ -1848,6 +2442,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1848
2442
|
readonly external: boolean | undefined;
|
|
1849
2443
|
readonly packages: string[];
|
|
1850
2444
|
readonly useFoldersLayout: boolean | undefined;
|
|
2445
|
+
readonly tsLikePackage: string | undefined;
|
|
1851
2446
|
}>;
|
|
1852
2447
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1853
2448
|
readonly globalPackages: string[];
|
|
@@ -1874,6 +2469,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1874
2469
|
readonly TypePrefix: string;
|
|
1875
2470
|
readonly LibraryPrefix: string;
|
|
1876
2471
|
readonly OptionalPrefix: string;
|
|
2472
|
+
readonly transformOnSerialize: {
|
|
2473
|
+
readonly from: string;
|
|
2474
|
+
readonly to: string;
|
|
2475
|
+
}[];
|
|
1877
2476
|
readonly rootComponents: string[];
|
|
1878
2477
|
readonly standaloneComponents: string[];
|
|
1879
2478
|
readonly parameterized: string[];
|
|
@@ -1894,6 +2493,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1894
2493
|
readonly external: boolean | undefined;
|
|
1895
2494
|
readonly packages: string[];
|
|
1896
2495
|
readonly useFoldersLayout: boolean | undefined;
|
|
2496
|
+
readonly tsLikePackage: string | undefined;
|
|
1897
2497
|
}>;
|
|
1898
2498
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1899
2499
|
readonly globalPackages: string[];
|
|
@@ -1904,6 +2504,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1904
2504
|
readonly TypePrefix: string;
|
|
1905
2505
|
readonly LibraryPrefix: string;
|
|
1906
2506
|
readonly OptionalPrefix: string;
|
|
2507
|
+
readonly transformOnSerialize: {
|
|
2508
|
+
readonly from: string;
|
|
2509
|
+
readonly to: string;
|
|
2510
|
+
}[];
|
|
1907
2511
|
readonly rootComponents: string[];
|
|
1908
2512
|
readonly standaloneComponents: string[];
|
|
1909
2513
|
readonly parameterized: string[];
|
|
@@ -1924,6 +2528,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1924
2528
|
readonly external: boolean | undefined;
|
|
1925
2529
|
readonly packages: string[];
|
|
1926
2530
|
readonly useFoldersLayout: boolean | undefined;
|
|
2531
|
+
readonly tsLikePackage: string | undefined;
|
|
1927
2532
|
}>;
|
|
1928
2533
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1929
2534
|
readonly globalPackages: string[];
|
|
@@ -1934,6 +2539,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1934
2539
|
readonly TypePrefix: string;
|
|
1935
2540
|
readonly LibraryPrefix: string;
|
|
1936
2541
|
readonly OptionalPrefix: string;
|
|
2542
|
+
readonly transformOnSerialize: {
|
|
2543
|
+
readonly from: string;
|
|
2544
|
+
readonly to: string;
|
|
2545
|
+
}[];
|
|
1937
2546
|
readonly rootComponents: string[];
|
|
1938
2547
|
readonly standaloneComponents: string[];
|
|
1939
2548
|
readonly parameterized: string[];
|
|
@@ -1954,6 +2563,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1954
2563
|
readonly external: boolean | undefined;
|
|
1955
2564
|
readonly packages: string[];
|
|
1956
2565
|
readonly useFoldersLayout: boolean | undefined;
|
|
2566
|
+
readonly tsLikePackage: string | undefined;
|
|
1957
2567
|
}>;
|
|
1958
2568
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1959
2569
|
readonly globalPackages: string[];
|
|
@@ -1964,6 +2574,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1964
2574
|
readonly TypePrefix: string;
|
|
1965
2575
|
readonly LibraryPrefix: string;
|
|
1966
2576
|
readonly OptionalPrefix: string;
|
|
2577
|
+
readonly transformOnSerialize: {
|
|
2578
|
+
readonly from: string;
|
|
2579
|
+
readonly to: string;
|
|
2580
|
+
}[];
|
|
1967
2581
|
readonly rootComponents: string[];
|
|
1968
2582
|
readonly standaloneComponents: string[];
|
|
1969
2583
|
readonly parameterized: string[];
|
|
@@ -1984,6 +2598,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
1984
2598
|
readonly external: boolean | undefined;
|
|
1985
2599
|
readonly packages: string[];
|
|
1986
2600
|
readonly useFoldersLayout: boolean | undefined;
|
|
2601
|
+
readonly tsLikePackage: string | undefined;
|
|
1987
2602
|
}>;
|
|
1988
2603
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1989
2604
|
readonly globalPackages: string[];
|
|
@@ -1994,6 +2609,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
1994
2609
|
readonly TypePrefix: string;
|
|
1995
2610
|
readonly LibraryPrefix: string;
|
|
1996
2611
|
readonly OptionalPrefix: string;
|
|
2612
|
+
readonly transformOnSerialize: {
|
|
2613
|
+
readonly from: string;
|
|
2614
|
+
readonly to: string;
|
|
2615
|
+
}[];
|
|
1997
2616
|
readonly rootComponents: string[];
|
|
1998
2617
|
readonly standaloneComponents: string[];
|
|
1999
2618
|
readonly parameterized: string[];
|
|
@@ -2014,6 +2633,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2014
2633
|
readonly external: boolean | undefined;
|
|
2015
2634
|
readonly packages: string[];
|
|
2016
2635
|
readonly useFoldersLayout: boolean | undefined;
|
|
2636
|
+
readonly tsLikePackage: string | undefined;
|
|
2017
2637
|
}>;
|
|
2018
2638
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2019
2639
|
readonly globalPackages: string[];
|
|
@@ -2024,6 +2644,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2024
2644
|
readonly TypePrefix: string;
|
|
2025
2645
|
readonly LibraryPrefix: string;
|
|
2026
2646
|
readonly OptionalPrefix: string;
|
|
2647
|
+
readonly transformOnSerialize: {
|
|
2648
|
+
readonly from: string;
|
|
2649
|
+
readonly to: string;
|
|
2650
|
+
}[];
|
|
2027
2651
|
readonly rootComponents: string[];
|
|
2028
2652
|
readonly standaloneComponents: string[];
|
|
2029
2653
|
readonly parameterized: string[];
|
|
@@ -2044,6 +2668,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2044
2668
|
readonly external: boolean | undefined;
|
|
2045
2669
|
readonly packages: string[];
|
|
2046
2670
|
readonly useFoldersLayout: boolean | undefined;
|
|
2671
|
+
readonly tsLikePackage: string | undefined;
|
|
2047
2672
|
}>;
|
|
2048
2673
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2049
2674
|
readonly globalPackages: string[];
|
|
@@ -2054,6 +2679,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2054
2679
|
readonly TypePrefix: string;
|
|
2055
2680
|
readonly LibraryPrefix: string;
|
|
2056
2681
|
readonly OptionalPrefix: string;
|
|
2682
|
+
readonly transformOnSerialize: {
|
|
2683
|
+
readonly from: string;
|
|
2684
|
+
readonly to: string;
|
|
2685
|
+
}[];
|
|
2057
2686
|
readonly rootComponents: string[];
|
|
2058
2687
|
readonly standaloneComponents: string[];
|
|
2059
2688
|
readonly parameterized: string[];
|
|
@@ -2074,6 +2703,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2074
2703
|
readonly external: boolean | undefined;
|
|
2075
2704
|
readonly packages: string[];
|
|
2076
2705
|
readonly useFoldersLayout: boolean | undefined;
|
|
2706
|
+
readonly tsLikePackage: string | undefined;
|
|
2077
2707
|
}>;
|
|
2078
2708
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2079
2709
|
readonly globalPackages: string[];
|
|
@@ -2084,6 +2714,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2084
2714
|
readonly TypePrefix: string;
|
|
2085
2715
|
readonly LibraryPrefix: string;
|
|
2086
2716
|
readonly OptionalPrefix: string;
|
|
2717
|
+
readonly transformOnSerialize: {
|
|
2718
|
+
readonly from: string;
|
|
2719
|
+
readonly to: string;
|
|
2720
|
+
}[];
|
|
2087
2721
|
readonly rootComponents: string[];
|
|
2088
2722
|
readonly standaloneComponents: string[];
|
|
2089
2723
|
readonly parameterized: string[];
|
|
@@ -2104,6 +2738,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2104
2738
|
readonly external: boolean | undefined;
|
|
2105
2739
|
readonly packages: string[];
|
|
2106
2740
|
readonly useFoldersLayout: boolean | undefined;
|
|
2741
|
+
readonly tsLikePackage: string | undefined;
|
|
2107
2742
|
}>;
|
|
2108
2743
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2109
2744
|
readonly globalPackages: string[];
|
|
@@ -2114,6 +2749,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2114
2749
|
readonly TypePrefix: string;
|
|
2115
2750
|
readonly LibraryPrefix: string;
|
|
2116
2751
|
readonly OptionalPrefix: string;
|
|
2752
|
+
readonly transformOnSerialize: {
|
|
2753
|
+
readonly from: string;
|
|
2754
|
+
readonly to: string;
|
|
2755
|
+
}[];
|
|
2117
2756
|
readonly rootComponents: string[];
|
|
2118
2757
|
readonly standaloneComponents: string[];
|
|
2119
2758
|
readonly parameterized: string[];
|
|
@@ -2134,6 +2773,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2134
2773
|
readonly external: boolean | undefined;
|
|
2135
2774
|
readonly packages: string[];
|
|
2136
2775
|
readonly useFoldersLayout: boolean | undefined;
|
|
2776
|
+
readonly tsLikePackage: string | undefined;
|
|
2137
2777
|
}>;
|
|
2138
2778
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2139
2779
|
readonly globalPackages: string[];
|
|
@@ -2144,6 +2784,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2144
2784
|
readonly TypePrefix: string;
|
|
2145
2785
|
readonly LibraryPrefix: string;
|
|
2146
2786
|
readonly OptionalPrefix: string;
|
|
2787
|
+
readonly transformOnSerialize: {
|
|
2788
|
+
readonly from: string;
|
|
2789
|
+
readonly to: string;
|
|
2790
|
+
}[];
|
|
2147
2791
|
readonly rootComponents: string[];
|
|
2148
2792
|
readonly standaloneComponents: string[];
|
|
2149
2793
|
readonly parameterized: string[];
|
|
@@ -2164,6 +2808,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2164
2808
|
readonly external: boolean | undefined;
|
|
2165
2809
|
readonly packages: string[];
|
|
2166
2810
|
readonly useFoldersLayout: boolean | undefined;
|
|
2811
|
+
readonly tsLikePackage: string | undefined;
|
|
2167
2812
|
}>;
|
|
2168
2813
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2169
2814
|
readonly globalPackages: string[];
|
|
@@ -2174,6 +2819,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2174
2819
|
readonly TypePrefix: string;
|
|
2175
2820
|
readonly LibraryPrefix: string;
|
|
2176
2821
|
readonly OptionalPrefix: string;
|
|
2822
|
+
readonly transformOnSerialize: {
|
|
2823
|
+
readonly from: string;
|
|
2824
|
+
readonly to: string;
|
|
2825
|
+
}[];
|
|
2177
2826
|
readonly rootComponents: string[];
|
|
2178
2827
|
readonly standaloneComponents: string[];
|
|
2179
2828
|
readonly parameterized: string[];
|
|
@@ -2194,6 +2843,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2194
2843
|
readonly external: boolean | undefined;
|
|
2195
2844
|
readonly packages: string[];
|
|
2196
2845
|
readonly useFoldersLayout: boolean | undefined;
|
|
2846
|
+
readonly tsLikePackage: string | undefined;
|
|
2197
2847
|
}>;
|
|
2198
2848
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2199
2849
|
readonly globalPackages: string[];
|
|
@@ -2204,6 +2854,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2204
2854
|
readonly TypePrefix: string;
|
|
2205
2855
|
readonly LibraryPrefix: string;
|
|
2206
2856
|
readonly OptionalPrefix: string;
|
|
2857
|
+
readonly transformOnSerialize: {
|
|
2858
|
+
readonly from: string;
|
|
2859
|
+
readonly to: string;
|
|
2860
|
+
}[];
|
|
2207
2861
|
readonly rootComponents: string[];
|
|
2208
2862
|
readonly standaloneComponents: string[];
|
|
2209
2863
|
readonly parameterized: string[];
|
|
@@ -2224,6 +2878,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2224
2878
|
readonly external: boolean | undefined;
|
|
2225
2879
|
readonly packages: string[];
|
|
2226
2880
|
readonly useFoldersLayout: boolean | undefined;
|
|
2881
|
+
readonly tsLikePackage: string | undefined;
|
|
2227
2882
|
}>;
|
|
2228
2883
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2229
2884
|
readonly globalPackages: string[];
|
|
@@ -2234,6 +2889,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2234
2889
|
readonly TypePrefix: string;
|
|
2235
2890
|
readonly LibraryPrefix: string;
|
|
2236
2891
|
readonly OptionalPrefix: string;
|
|
2892
|
+
readonly transformOnSerialize: {
|
|
2893
|
+
readonly from: string;
|
|
2894
|
+
readonly to: string;
|
|
2895
|
+
}[];
|
|
2237
2896
|
readonly rootComponents: string[];
|
|
2238
2897
|
readonly standaloneComponents: string[];
|
|
2239
2898
|
readonly parameterized: string[];
|
|
@@ -2254,6 +2913,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2254
2913
|
readonly external: boolean | undefined;
|
|
2255
2914
|
readonly packages: string[];
|
|
2256
2915
|
readonly useFoldersLayout: boolean | undefined;
|
|
2916
|
+
readonly tsLikePackage: string | undefined;
|
|
2257
2917
|
}>;
|
|
2258
2918
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2259
2919
|
readonly globalPackages: string[];
|
|
@@ -2264,6 +2924,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2264
2924
|
readonly TypePrefix: string;
|
|
2265
2925
|
readonly LibraryPrefix: string;
|
|
2266
2926
|
readonly OptionalPrefix: string;
|
|
2927
|
+
readonly transformOnSerialize: {
|
|
2928
|
+
readonly from: string;
|
|
2929
|
+
readonly to: string;
|
|
2930
|
+
}[];
|
|
2267
2931
|
readonly rootComponents: string[];
|
|
2268
2932
|
readonly standaloneComponents: string[];
|
|
2269
2933
|
readonly parameterized: string[];
|
|
@@ -2284,6 +2948,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2284
2948
|
readonly external: boolean | undefined;
|
|
2285
2949
|
readonly packages: string[];
|
|
2286
2950
|
readonly useFoldersLayout: boolean | undefined;
|
|
2951
|
+
readonly tsLikePackage: string | undefined;
|
|
2287
2952
|
}>;
|
|
2288
2953
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2289
2954
|
readonly globalPackages: string[];
|
|
@@ -2294,6 +2959,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2294
2959
|
readonly TypePrefix: string;
|
|
2295
2960
|
readonly LibraryPrefix: string;
|
|
2296
2961
|
readonly OptionalPrefix: string;
|
|
2962
|
+
readonly transformOnSerialize: {
|
|
2963
|
+
readonly from: string;
|
|
2964
|
+
readonly to: string;
|
|
2965
|
+
}[];
|
|
2297
2966
|
readonly rootComponents: string[];
|
|
2298
2967
|
readonly standaloneComponents: string[];
|
|
2299
2968
|
readonly parameterized: string[];
|
|
@@ -2314,6 +2983,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2314
2983
|
readonly external: boolean | undefined;
|
|
2315
2984
|
readonly packages: string[];
|
|
2316
2985
|
readonly useFoldersLayout: boolean | undefined;
|
|
2986
|
+
readonly tsLikePackage: string | undefined;
|
|
2317
2987
|
}>;
|
|
2318
2988
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2319
2989
|
readonly globalPackages: string[];
|
|
@@ -2324,6 +2994,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2324
2994
|
readonly TypePrefix: string;
|
|
2325
2995
|
readonly LibraryPrefix: string;
|
|
2326
2996
|
readonly OptionalPrefix: string;
|
|
2997
|
+
readonly transformOnSerialize: {
|
|
2998
|
+
readonly from: string;
|
|
2999
|
+
readonly to: string;
|
|
3000
|
+
}[];
|
|
2327
3001
|
readonly rootComponents: string[];
|
|
2328
3002
|
readonly standaloneComponents: string[];
|
|
2329
3003
|
readonly parameterized: string[];
|
|
@@ -2344,6 +3018,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2344
3018
|
readonly external: boolean | undefined;
|
|
2345
3019
|
readonly packages: string[];
|
|
2346
3020
|
readonly useFoldersLayout: boolean | undefined;
|
|
3021
|
+
readonly tsLikePackage: string | undefined;
|
|
2347
3022
|
}>;
|
|
2348
3023
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2349
3024
|
readonly globalPackages: string[];
|
|
@@ -2354,6 +3029,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2354
3029
|
readonly TypePrefix: string;
|
|
2355
3030
|
readonly LibraryPrefix: string;
|
|
2356
3031
|
readonly OptionalPrefix: string;
|
|
3032
|
+
readonly transformOnSerialize: {
|
|
3033
|
+
readonly from: string;
|
|
3034
|
+
readonly to: string;
|
|
3035
|
+
}[];
|
|
2357
3036
|
readonly rootComponents: string[];
|
|
2358
3037
|
readonly standaloneComponents: string[];
|
|
2359
3038
|
readonly parameterized: string[];
|
|
@@ -2374,6 +3053,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2374
3053
|
readonly external: boolean | undefined;
|
|
2375
3054
|
readonly packages: string[];
|
|
2376
3055
|
readonly useFoldersLayout: boolean | undefined;
|
|
3056
|
+
readonly tsLikePackage: string | undefined;
|
|
2377
3057
|
}>;
|
|
2378
3058
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2379
3059
|
readonly globalPackages: string[];
|
|
@@ -2384,6 +3064,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2384
3064
|
readonly TypePrefix: string;
|
|
2385
3065
|
readonly LibraryPrefix: string;
|
|
2386
3066
|
readonly OptionalPrefix: string;
|
|
3067
|
+
readonly transformOnSerialize: {
|
|
3068
|
+
readonly from: string;
|
|
3069
|
+
readonly to: string;
|
|
3070
|
+
}[];
|
|
2387
3071
|
readonly rootComponents: string[];
|
|
2388
3072
|
readonly standaloneComponents: string[];
|
|
2389
3073
|
readonly parameterized: string[];
|
|
@@ -2404,6 +3088,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2404
3088
|
readonly external: boolean | undefined;
|
|
2405
3089
|
readonly packages: string[];
|
|
2406
3090
|
readonly useFoldersLayout: boolean | undefined;
|
|
3091
|
+
readonly tsLikePackage: string | undefined;
|
|
2407
3092
|
}>;
|
|
2408
3093
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2409
3094
|
readonly globalPackages: string[];
|
|
@@ -2414,6 +3099,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2414
3099
|
readonly TypePrefix: string;
|
|
2415
3100
|
readonly LibraryPrefix: string;
|
|
2416
3101
|
readonly OptionalPrefix: string;
|
|
3102
|
+
readonly transformOnSerialize: {
|
|
3103
|
+
readonly from: string;
|
|
3104
|
+
readonly to: string;
|
|
3105
|
+
}[];
|
|
2417
3106
|
readonly rootComponents: string[];
|
|
2418
3107
|
readonly standaloneComponents: string[];
|
|
2419
3108
|
readonly parameterized: string[];
|
|
@@ -2434,6 +3123,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2434
3123
|
readonly external: boolean | undefined;
|
|
2435
3124
|
readonly packages: string[];
|
|
2436
3125
|
readonly useFoldersLayout: boolean | undefined;
|
|
3126
|
+
readonly tsLikePackage: string | undefined;
|
|
2437
3127
|
}>;
|
|
2438
3128
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2439
3129
|
readonly globalPackages: string[];
|
|
@@ -2444,6 +3134,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2444
3134
|
readonly TypePrefix: string;
|
|
2445
3135
|
readonly LibraryPrefix: string;
|
|
2446
3136
|
readonly OptionalPrefix: string;
|
|
3137
|
+
readonly transformOnSerialize: {
|
|
3138
|
+
readonly from: string;
|
|
3139
|
+
readonly to: string;
|
|
3140
|
+
}[];
|
|
2447
3141
|
readonly rootComponents: string[];
|
|
2448
3142
|
readonly standaloneComponents: string[];
|
|
2449
3143
|
readonly parameterized: string[];
|
|
@@ -2464,6 +3158,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2464
3158
|
readonly external: boolean | undefined;
|
|
2465
3159
|
readonly packages: string[];
|
|
2466
3160
|
readonly useFoldersLayout: boolean | undefined;
|
|
3161
|
+
readonly tsLikePackage: string | undefined;
|
|
2467
3162
|
}>;
|
|
2468
3163
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2469
3164
|
readonly globalPackages: string[];
|
|
@@ -2474,6 +3169,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2474
3169
|
readonly TypePrefix: string;
|
|
2475
3170
|
readonly LibraryPrefix: string;
|
|
2476
3171
|
readonly OptionalPrefix: string;
|
|
3172
|
+
readonly transformOnSerialize: {
|
|
3173
|
+
readonly from: string;
|
|
3174
|
+
readonly to: string;
|
|
3175
|
+
}[];
|
|
2477
3176
|
readonly rootComponents: string[];
|
|
2478
3177
|
readonly standaloneComponents: string[];
|
|
2479
3178
|
readonly parameterized: string[];
|
|
@@ -2494,6 +3193,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2494
3193
|
readonly external: boolean | undefined;
|
|
2495
3194
|
readonly packages: string[];
|
|
2496
3195
|
readonly useFoldersLayout: boolean | undefined;
|
|
3196
|
+
readonly tsLikePackage: string | undefined;
|
|
2497
3197
|
}>;
|
|
2498
3198
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2499
3199
|
readonly globalPackages: string[];
|
|
@@ -2504,6 +3204,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2504
3204
|
readonly TypePrefix: string;
|
|
2505
3205
|
readonly LibraryPrefix: string;
|
|
2506
3206
|
readonly OptionalPrefix: string;
|
|
3207
|
+
readonly transformOnSerialize: {
|
|
3208
|
+
readonly from: string;
|
|
3209
|
+
readonly to: string;
|
|
3210
|
+
}[];
|
|
2507
3211
|
readonly rootComponents: string[];
|
|
2508
3212
|
readonly standaloneComponents: string[];
|
|
2509
3213
|
readonly parameterized: string[];
|
|
@@ -2524,6 +3228,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2524
3228
|
readonly external: boolean | undefined;
|
|
2525
3229
|
readonly packages: string[];
|
|
2526
3230
|
readonly useFoldersLayout: boolean | undefined;
|
|
3231
|
+
readonly tsLikePackage: string | undefined;
|
|
2527
3232
|
}>;
|
|
2528
3233
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2529
3234
|
readonly globalPackages: string[];
|
|
@@ -2534,6 +3239,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2534
3239
|
readonly TypePrefix: string;
|
|
2535
3240
|
readonly LibraryPrefix: string;
|
|
2536
3241
|
readonly OptionalPrefix: string;
|
|
3242
|
+
readonly transformOnSerialize: {
|
|
3243
|
+
readonly from: string;
|
|
3244
|
+
readonly to: string;
|
|
3245
|
+
}[];
|
|
2537
3246
|
readonly rootComponents: string[];
|
|
2538
3247
|
readonly standaloneComponents: string[];
|
|
2539
3248
|
readonly parameterized: string[];
|
|
@@ -2554,6 +3263,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2554
3263
|
readonly external: boolean | undefined;
|
|
2555
3264
|
readonly packages: string[];
|
|
2556
3265
|
readonly useFoldersLayout: boolean | undefined;
|
|
3266
|
+
readonly tsLikePackage: string | undefined;
|
|
2557
3267
|
}>;
|
|
2558
3268
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2559
3269
|
readonly globalPackages: string[];
|
|
@@ -2564,6 +3274,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2564
3274
|
readonly TypePrefix: string;
|
|
2565
3275
|
readonly LibraryPrefix: string;
|
|
2566
3276
|
readonly OptionalPrefix: string;
|
|
3277
|
+
readonly transformOnSerialize: {
|
|
3278
|
+
readonly from: string;
|
|
3279
|
+
readonly to: string;
|
|
3280
|
+
}[];
|
|
2567
3281
|
readonly rootComponents: string[];
|
|
2568
3282
|
readonly standaloneComponents: string[];
|
|
2569
3283
|
readonly parameterized: string[];
|
|
@@ -2584,6 +3298,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2584
3298
|
readonly external: boolean | undefined;
|
|
2585
3299
|
readonly packages: string[];
|
|
2586
3300
|
readonly useFoldersLayout: boolean | undefined;
|
|
3301
|
+
readonly tsLikePackage: string | undefined;
|
|
2587
3302
|
}>;
|
|
2588
3303
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2589
3304
|
readonly globalPackages: string[];
|
|
@@ -2594,6 +3309,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2594
3309
|
readonly TypePrefix: string;
|
|
2595
3310
|
readonly LibraryPrefix: string;
|
|
2596
3311
|
readonly OptionalPrefix: string;
|
|
3312
|
+
readonly transformOnSerialize: {
|
|
3313
|
+
readonly from: string;
|
|
3314
|
+
readonly to: string;
|
|
3315
|
+
}[];
|
|
2597
3316
|
readonly rootComponents: string[];
|
|
2598
3317
|
readonly standaloneComponents: string[];
|
|
2599
3318
|
readonly parameterized: string[];
|
|
@@ -2614,6 +3333,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2614
3333
|
readonly external: boolean | undefined;
|
|
2615
3334
|
readonly packages: string[];
|
|
2616
3335
|
readonly useFoldersLayout: boolean | undefined;
|
|
3336
|
+
readonly tsLikePackage: string | undefined;
|
|
2617
3337
|
}>;
|
|
2618
3338
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2619
3339
|
readonly globalPackages: string[];
|
|
@@ -2624,6 +3344,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2624
3344
|
readonly TypePrefix: string;
|
|
2625
3345
|
readonly LibraryPrefix: string;
|
|
2626
3346
|
readonly OptionalPrefix: string;
|
|
3347
|
+
readonly transformOnSerialize: {
|
|
3348
|
+
readonly from: string;
|
|
3349
|
+
readonly to: string;
|
|
3350
|
+
}[];
|
|
2627
3351
|
readonly rootComponents: string[];
|
|
2628
3352
|
readonly standaloneComponents: string[];
|
|
2629
3353
|
readonly parameterized: string[];
|
|
@@ -2644,6 +3368,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2644
3368
|
readonly external: boolean | undefined;
|
|
2645
3369
|
readonly packages: string[];
|
|
2646
3370
|
readonly useFoldersLayout: boolean | undefined;
|
|
3371
|
+
readonly tsLikePackage: string | undefined;
|
|
2647
3372
|
}>;
|
|
2648
3373
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2649
3374
|
readonly globalPackages: string[];
|
|
@@ -2654,6 +3379,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2654
3379
|
readonly TypePrefix: string;
|
|
2655
3380
|
readonly LibraryPrefix: string;
|
|
2656
3381
|
readonly OptionalPrefix: string;
|
|
3382
|
+
readonly transformOnSerialize: {
|
|
3383
|
+
readonly from: string;
|
|
3384
|
+
readonly to: string;
|
|
3385
|
+
}[];
|
|
2657
3386
|
readonly rootComponents: string[];
|
|
2658
3387
|
readonly standaloneComponents: string[];
|
|
2659
3388
|
readonly parameterized: string[];
|
|
@@ -2674,6 +3403,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2674
3403
|
readonly external: boolean | undefined;
|
|
2675
3404
|
readonly packages: string[];
|
|
2676
3405
|
readonly useFoldersLayout: boolean | undefined;
|
|
3406
|
+
readonly tsLikePackage: string | undefined;
|
|
2677
3407
|
}>;
|
|
2678
3408
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2679
3409
|
readonly globalPackages: string[];
|
|
@@ -2684,6 +3414,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2684
3414
|
readonly TypePrefix: string;
|
|
2685
3415
|
readonly LibraryPrefix: string;
|
|
2686
3416
|
readonly OptionalPrefix: string;
|
|
3417
|
+
readonly transformOnSerialize: {
|
|
3418
|
+
readonly from: string;
|
|
3419
|
+
readonly to: string;
|
|
3420
|
+
}[];
|
|
2687
3421
|
readonly rootComponents: string[];
|
|
2688
3422
|
readonly standaloneComponents: string[];
|
|
2689
3423
|
readonly parameterized: string[];
|
|
@@ -2704,6 +3438,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2704
3438
|
readonly external: boolean | undefined;
|
|
2705
3439
|
readonly packages: string[];
|
|
2706
3440
|
readonly useFoldersLayout: boolean | undefined;
|
|
3441
|
+
readonly tsLikePackage: string | undefined;
|
|
2707
3442
|
}>;
|
|
2708
3443
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2709
3444
|
readonly globalPackages: string[];
|
|
@@ -2714,6 +3449,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2714
3449
|
readonly TypePrefix: string;
|
|
2715
3450
|
readonly LibraryPrefix: string;
|
|
2716
3451
|
readonly OptionalPrefix: string;
|
|
3452
|
+
readonly transformOnSerialize: {
|
|
3453
|
+
readonly from: string;
|
|
3454
|
+
readonly to: string;
|
|
3455
|
+
}[];
|
|
2717
3456
|
readonly rootComponents: string[];
|
|
2718
3457
|
readonly standaloneComponents: string[];
|
|
2719
3458
|
readonly parameterized: string[];
|
|
@@ -2734,6 +3473,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2734
3473
|
readonly external: boolean | undefined;
|
|
2735
3474
|
readonly packages: string[];
|
|
2736
3475
|
readonly useFoldersLayout: boolean | undefined;
|
|
3476
|
+
readonly tsLikePackage: string | undefined;
|
|
2737
3477
|
}>;
|
|
2738
3478
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2739
3479
|
readonly globalPackages: string[];
|
|
@@ -2744,6 +3484,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2744
3484
|
readonly TypePrefix: string;
|
|
2745
3485
|
readonly LibraryPrefix: string;
|
|
2746
3486
|
readonly OptionalPrefix: string;
|
|
3487
|
+
readonly transformOnSerialize: {
|
|
3488
|
+
readonly from: string;
|
|
3489
|
+
readonly to: string;
|
|
3490
|
+
}[];
|
|
2747
3491
|
readonly rootComponents: string[];
|
|
2748
3492
|
readonly standaloneComponents: string[];
|
|
2749
3493
|
readonly parameterized: string[];
|
|
@@ -2764,6 +3508,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2764
3508
|
readonly external: boolean | undefined;
|
|
2765
3509
|
readonly packages: string[];
|
|
2766
3510
|
readonly useFoldersLayout: boolean | undefined;
|
|
3511
|
+
readonly tsLikePackage: string | undefined;
|
|
2767
3512
|
}>;
|
|
2768
3513
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2769
3514
|
readonly globalPackages: string[];
|
|
@@ -2774,6 +3519,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2774
3519
|
readonly TypePrefix: string;
|
|
2775
3520
|
readonly LibraryPrefix: string;
|
|
2776
3521
|
readonly OptionalPrefix: string;
|
|
3522
|
+
readonly transformOnSerialize: {
|
|
3523
|
+
readonly from: string;
|
|
3524
|
+
readonly to: string;
|
|
3525
|
+
}[];
|
|
2777
3526
|
readonly rootComponents: string[];
|
|
2778
3527
|
readonly standaloneComponents: string[];
|
|
2779
3528
|
readonly parameterized: string[];
|
|
@@ -2794,6 +3543,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2794
3543
|
readonly external: boolean | undefined;
|
|
2795
3544
|
readonly packages: string[];
|
|
2796
3545
|
readonly useFoldersLayout: boolean | undefined;
|
|
3546
|
+
readonly tsLikePackage: string | undefined;
|
|
2797
3547
|
}>;
|
|
2798
3548
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2799
3549
|
readonly globalPackages: string[];
|
|
@@ -2804,6 +3554,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2804
3554
|
readonly TypePrefix: string;
|
|
2805
3555
|
readonly LibraryPrefix: string;
|
|
2806
3556
|
readonly OptionalPrefix: string;
|
|
3557
|
+
readonly transformOnSerialize: {
|
|
3558
|
+
readonly from: string;
|
|
3559
|
+
readonly to: string;
|
|
3560
|
+
}[];
|
|
2807
3561
|
readonly rootComponents: string[];
|
|
2808
3562
|
readonly standaloneComponents: string[];
|
|
2809
3563
|
readonly parameterized: string[];
|
|
@@ -2824,6 +3578,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2824
3578
|
readonly external: boolean | undefined;
|
|
2825
3579
|
readonly packages: string[];
|
|
2826
3580
|
readonly useFoldersLayout: boolean | undefined;
|
|
3581
|
+
readonly tsLikePackage: string | undefined;
|
|
2827
3582
|
}>;
|
|
2828
3583
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2829
3584
|
readonly globalPackages: string[];
|
|
@@ -2834,6 +3589,10 @@ export declare const CoreConfigurationSchema: {
|
|
|
2834
3589
|
readonly TypePrefix: string;
|
|
2835
3590
|
readonly LibraryPrefix: string;
|
|
2836
3591
|
readonly OptionalPrefix: string;
|
|
3592
|
+
readonly transformOnSerialize: {
|
|
3593
|
+
readonly from: string;
|
|
3594
|
+
readonly to: string;
|
|
3595
|
+
}[];
|
|
2837
3596
|
readonly rootComponents: string[];
|
|
2838
3597
|
readonly standaloneComponents: string[];
|
|
2839
3598
|
readonly parameterized: string[];
|
|
@@ -2854,6 +3613,7 @@ export declare const CoreConfigurationSchema: {
|
|
|
2854
3613
|
readonly external: boolean | undefined;
|
|
2855
3614
|
readonly packages: string[];
|
|
2856
3615
|
readonly useFoldersLayout: boolean | undefined;
|
|
3616
|
+
readonly tsLikePackage: string | undefined;
|
|
2857
3617
|
}>;
|
|
2858
3618
|
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2859
3619
|
readonly globalPackages: string[];
|