@weapp-core/schematics 6.0.2 → 6.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ //#region src/generator.d.ts
1
2
  /**
2
3
  * @description 生成模板的目标类型
3
4
  */
@@ -6,7 +7,8 @@ type GenerateType = 'app' | 'page' | 'component';
6
7
  * @description JSON 输出扩展名
7
8
  */
8
9
  type JsonExt = 'json' | 'js' | 'ts' | (string & {});
9
-
10
+ //#endregion
11
+ //#region src/type.auto.d.ts
10
12
  /**
11
13
  * This file was automatically generated by json-schema-to-typescript.
12
14
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -16,247 +18,229 @@ type JsonExt = 'json' | 'js' | 'ts' | (string & {});
16
18
  * 全局配置, 小程序根目录下的 app.json 文件用来对微信小程序进行全局配置。
17
19
  */
18
20
  interface App$1 {
19
- appBar?: {
20
- [k: string]: unknown;
21
- };
22
- componentFramework?: string;
23
- convertRpxToVw?: boolean;
24
- darkmode?: boolean;
25
- debug?: boolean;
26
- debugOptions?: {
27
- [k: string]: unknown;
28
- };
29
- embeddedAppIdList?: string[];
30
- enablePassiveEvent?: {
31
- [k: string]: unknown;
32
- } | boolean;
33
- entranceDeclare?: {
34
- [k: string]: unknown;
35
- };
36
- /**
37
- * 指定小程序的默认启动路径(首页),常见情景是从微信聊天列表页下拉启动、小程序列表启动等。如果不填,将默认为 pages 列表的第一项。不支持带页面路径参数。
38
- */
39
- entryPagePath?: string;
40
- functionalPages?: boolean;
41
- halfPage?: {
42
- [k: string]: unknown;
43
- };
44
- lazyCodeLoading?: string;
45
- miniApp?: {
46
- [k: string]: unknown;
47
- };
48
- networkTimeout?: {
49
- connectSocket?: number;
50
- downloadFile?: number;
51
- request?: number;
52
- uploadFile?: number;
53
- [k: string]: unknown;
21
+ appBar?: {
22
+ [k: string]: unknown;
23
+ };
24
+ componentFramework?: string;
25
+ convertRpxToVw?: boolean;
26
+ darkmode?: boolean;
27
+ debug?: boolean;
28
+ debugOptions?: {
29
+ [k: string]: unknown;
30
+ };
31
+ embeddedAppIdList?: string[];
32
+ enablePassiveEvent?: {
33
+ [k: string]: unknown;
34
+ } | boolean;
35
+ entranceDeclare?: {
36
+ [k: string]: unknown;
37
+ };
38
+ /**
39
+ * 指定小程序的默认启动路径(首页),常见情景是从微信聊天列表页下拉启动、小程序列表启动等。如果不填,将默认为 pages 列表的第一项。不支持带页面路径参数。
40
+ */
41
+ entryPagePath?: string;
42
+ functionalPages?: boolean;
43
+ halfPage?: {
44
+ [k: string]: unknown;
45
+ };
46
+ lazyCodeLoading?: string;
47
+ miniApp?: {
48
+ [k: string]: unknown;
49
+ };
50
+ networkTimeout?: {
51
+ connectSocket?: number;
52
+ downloadFile?: number;
53
+ request?: number;
54
+ uploadFile?: number;
55
+ [k: string]: unknown;
56
+ };
57
+ /**
58
+ * 用于指定小程序由哪些页面组成,每一项都对应一个页面的 路径(含文件名) 信息。文件名不需要写文件后缀,框架会自动去寻找对应位置的 .json, .js, .wxml, .wxss 四个文件进行处理。
59
+ */
60
+ pages: string[];
61
+ permission?: {
62
+ [k: string]: unknown;
63
+ };
64
+ plugins?: {
65
+ [k: string]: unknown;
66
+ };
67
+ preloadRule?: {
68
+ [k: string]: unknown;
69
+ };
70
+ renderer?: "webview" | "skyline";
71
+ rendererOptions?: {
72
+ skyline?: {
73
+ defaultContentBox?: boolean;
74
+ defaultDisplayBlock?: boolean;
75
+ disableABTest?: boolean;
76
+ [k: string]: unknown;
54
77
  };
78
+ [k: string]: unknown;
79
+ };
80
+ requiredBackgroundModes?: string[];
81
+ requiredPrivateInfos?: string[];
82
+ resizable?: boolean;
83
+ resolveAlias?: {
84
+ [k: string]: unknown;
85
+ };
86
+ serviceProviderTicket?: string;
87
+ singlePage?: {
88
+ [k: string]: unknown;
89
+ };
90
+ sitemapLocation?: string;
91
+ static?: {
92
+ [k: string]: unknown;
93
+ };
94
+ style?: string;
95
+ subPackages?: {
96
+ entry?: string;
97
+ independent?: boolean;
98
+ name?: string;
99
+ pages?: string[];
100
+ root?: string;
101
+ [k: string]: unknown;
102
+ }[];
103
+ subpackages?: {
104
+ entry?: string;
105
+ independent?: boolean;
106
+ name?: string;
107
+ pages?: string[];
108
+ root?: string;
109
+ [k: string]: unknown;
110
+ }[];
111
+ supportedMaterials?: {
112
+ [k: string]: unknown;
113
+ };
114
+ tabBar?: {
115
+ backgroundColor: string;
116
+ borderStyle?: "black" | "white";
117
+ color: string;
118
+ custom?: boolean;
55
119
  /**
56
- * 用于指定小程序由哪些页面组成,每一项都对应一个页面的 路径(含文件名) 信息。文件名不需要写文件后缀,框架会自动去寻找对应位置的 .json, .js, .wxml, .wxss 四个文件进行处理。
120
+ * @minItems 2
121
+ * @maxItems 5
57
122
  */
58
- pages: string[];
59
- permission?: {
60
- [k: string]: unknown;
61
- };
62
- plugins?: {
63
- [k: string]: unknown;
64
- };
65
- preloadRule?: {
66
- [k: string]: unknown;
67
- };
68
- renderer?: "webview" | "skyline";
69
- rendererOptions?: {
70
- skyline?: {
71
- defaultContentBox?: boolean;
72
- defaultDisplayBlock?: boolean;
73
- disableABTest?: boolean;
74
- [k: string]: unknown;
75
- };
76
- [k: string]: unknown;
77
- };
78
- requiredBackgroundModes?: string[];
79
- requiredPrivateInfos?: string[];
80
- resizable?: boolean;
81
- resolveAlias?: {
82
- [k: string]: unknown;
83
- };
84
- serviceProviderTicket?: string;
85
- singlePage?: {
86
- [k: string]: unknown;
87
- };
88
- sitemapLocation?: string;
89
- static?: {
90
- [k: string]: unknown;
91
- };
92
- style?: string;
93
- subPackages?: {
94
- entry?: string;
95
- independent?: boolean;
96
- name?: string;
97
- pages?: string[];
98
- root?: string;
99
- [k: string]: unknown;
100
- }[];
101
- subpackages?: {
102
- entry?: string;
103
- independent?: boolean;
104
- name?: string;
105
- pages?: string[];
106
- root?: string;
107
- [k: string]: unknown;
108
- }[];
109
- supportedMaterials?: {
110
- [k: string]: unknown;
111
- };
112
- tabBar?: {
113
- backgroundColor: string;
114
- borderStyle?: "black" | "white";
115
- color: string;
116
- custom?: boolean;
117
- /**
118
- * @minItems 2
119
- * @maxItems 5
120
- */
121
- list: [
122
- {
123
- iconPath?: string;
124
- pagePath: string;
125
- selectedIconPath?: string;
126
- text: string;
127
- [k: string]: unknown;
128
- },
129
- {
130
- iconPath?: string;
131
- pagePath: string;
132
- selectedIconPath?: string;
133
- text: string;
134
- [k: string]: unknown;
135
- }
136
- ] | [
137
- {
138
- iconPath?: string;
139
- pagePath: string;
140
- selectedIconPath?: string;
141
- text: string;
142
- [k: string]: unknown;
143
- },
144
- {
145
- iconPath?: string;
146
- pagePath: string;
147
- selectedIconPath?: string;
148
- text: string;
149
- [k: string]: unknown;
150
- },
151
- {
152
- iconPath?: string;
153
- pagePath: string;
154
- selectedIconPath?: string;
155
- text: string;
156
- [k: string]: unknown;
157
- }
158
- ] | [
159
- {
160
- iconPath?: string;
161
- pagePath: string;
162
- selectedIconPath?: string;
163
- text: string;
164
- [k: string]: unknown;
165
- },
166
- {
167
- iconPath?: string;
168
- pagePath: string;
169
- selectedIconPath?: string;
170
- text: string;
171
- [k: string]: unknown;
172
- },
173
- {
174
- iconPath?: string;
175
- pagePath: string;
176
- selectedIconPath?: string;
177
- text: string;
178
- [k: string]: unknown;
179
- },
180
- {
181
- iconPath?: string;
182
- pagePath: string;
183
- selectedIconPath?: string;
184
- text: string;
185
- [k: string]: unknown;
186
- }
187
- ] | [
188
- {
189
- iconPath?: string;
190
- pagePath: string;
191
- selectedIconPath?: string;
192
- text: string;
193
- [k: string]: unknown;
194
- },
195
- {
196
- iconPath?: string;
197
- pagePath: string;
198
- selectedIconPath?: string;
199
- text: string;
200
- [k: string]: unknown;
201
- },
202
- {
203
- iconPath?: string;
204
- pagePath: string;
205
- selectedIconPath?: string;
206
- text: string;
207
- [k: string]: unknown;
208
- },
209
- {
210
- iconPath?: string;
211
- pagePath: string;
212
- selectedIconPath?: string;
213
- text: string;
214
- [k: string]: unknown;
215
- },
216
- {
217
- iconPath?: string;
218
- pagePath: string;
219
- selectedIconPath?: string;
220
- text: string;
221
- [k: string]: unknown;
222
- }
223
- ];
224
- position?: "bottom" | "top";
225
- selectedColor: string;
226
- [k: string]: unknown;
227
- };
228
- themeLocation?: string;
229
- useExtendedLib?: {
230
- [k: string]: unknown;
231
- };
232
- usingComponents?: {
233
- [k: string]: string;
234
- };
235
- window?: {
236
- backgroundColor?: string;
237
- backgroundColorBottom?: string;
238
- backgroundColorTop?: string;
239
- backgroundTextStyle?: "dark" | "light";
240
- enablePullDownRefresh?: boolean;
241
- handleWebviewPreload?: "static" | "manual" | "auto";
242
- homeButton?: boolean;
243
- initialRenderingCache?: "static" | "dynamic";
244
- navigationBarBackgroundColor?: string;
245
- navigationBarTextStyle?: string;
246
- navigationBarTitleText?: string;
247
- navigationStyle?: "default" | "custom";
248
- onReachBottomDistance?: number;
249
- pageOrientation?: "portrait" | "auto" | "landscape";
250
- restartStrategy?: "homePage" | "homePageAndLatestPage";
251
- visualEffectInBackground?: "none" | "hidden";
252
- [k: string]: unknown;
253
- };
254
- workers?: string | {
255
- isSubpackage?: boolean;
256
- path?: string;
257
- [k: string]: unknown;
258
- };
123
+ list: [{
124
+ iconPath?: string;
125
+ pagePath: string;
126
+ selectedIconPath?: string;
127
+ text: string;
128
+ [k: string]: unknown;
129
+ }, {
130
+ iconPath?: string;
131
+ pagePath: string;
132
+ selectedIconPath?: string;
133
+ text: string;
134
+ [k: string]: unknown;
135
+ }] | [{
136
+ iconPath?: string;
137
+ pagePath: string;
138
+ selectedIconPath?: string;
139
+ text: string;
140
+ [k: string]: unknown;
141
+ }, {
142
+ iconPath?: string;
143
+ pagePath: string;
144
+ selectedIconPath?: string;
145
+ text: string;
146
+ [k: string]: unknown;
147
+ }, {
148
+ iconPath?: string;
149
+ pagePath: string;
150
+ selectedIconPath?: string;
151
+ text: string;
152
+ [k: string]: unknown;
153
+ }] | [{
154
+ iconPath?: string;
155
+ pagePath: string;
156
+ selectedIconPath?: string;
157
+ text: string;
158
+ [k: string]: unknown;
159
+ }, {
160
+ iconPath?: string;
161
+ pagePath: string;
162
+ selectedIconPath?: string;
163
+ text: string;
164
+ [k: string]: unknown;
165
+ }, {
166
+ iconPath?: string;
167
+ pagePath: string;
168
+ selectedIconPath?: string;
169
+ text: string;
170
+ [k: string]: unknown;
171
+ }, {
172
+ iconPath?: string;
173
+ pagePath: string;
174
+ selectedIconPath?: string;
175
+ text: string;
176
+ [k: string]: unknown;
177
+ }] | [{
178
+ iconPath?: string;
179
+ pagePath: string;
180
+ selectedIconPath?: string;
181
+ text: string;
182
+ [k: string]: unknown;
183
+ }, {
184
+ iconPath?: string;
185
+ pagePath: string;
186
+ selectedIconPath?: string;
187
+ text: string;
188
+ [k: string]: unknown;
189
+ }, {
190
+ iconPath?: string;
191
+ pagePath: string;
192
+ selectedIconPath?: string;
193
+ text: string;
194
+ [k: string]: unknown;
195
+ }, {
196
+ iconPath?: string;
197
+ pagePath: string;
198
+ selectedIconPath?: string;
199
+ text: string;
200
+ [k: string]: unknown;
201
+ }, {
202
+ iconPath?: string;
203
+ pagePath: string;
204
+ selectedIconPath?: string;
205
+ text: string;
206
+ [k: string]: unknown;
207
+ }];
208
+ position?: "bottom" | "top";
209
+ selectedColor: string;
259
210
  [k: string]: unknown;
211
+ };
212
+ themeLocation?: string;
213
+ useExtendedLib?: {
214
+ [k: string]: unknown;
215
+ };
216
+ usingComponents?: {
217
+ [k: string]: string;
218
+ };
219
+ window?: {
220
+ backgroundColor?: string;
221
+ backgroundColorBottom?: string;
222
+ backgroundColorTop?: string;
223
+ backgroundTextStyle?: "dark" | "light";
224
+ enablePullDownRefresh?: boolean;
225
+ handleWebviewPreload?: "static" | "manual" | "auto";
226
+ homeButton?: boolean;
227
+ initialRenderingCache?: "static" | "dynamic";
228
+ navigationBarBackgroundColor?: string;
229
+ navigationBarTextStyle?: string;
230
+ navigationBarTitleText?: string;
231
+ navigationStyle?: "default" | "custom";
232
+ onReachBottomDistance?: number;
233
+ pageOrientation?: "portrait" | "auto" | "landscape";
234
+ restartStrategy?: "homePage" | "homePageAndLatestPage";
235
+ visualEffectInBackground?: "none" | "hidden";
236
+ [k: string]: unknown;
237
+ };
238
+ workers?: string | {
239
+ isSubpackage?: boolean;
240
+ path?: string;
241
+ [k: string]: unknown;
242
+ };
243
+ [k: string]: unknown;
260
244
  }
261
245
  /**
262
246
  * This file was automatically generated by json-schema-to-typescript.
@@ -267,19 +251,19 @@ interface App$1 {
267
251
  * 自定义组件配置
268
252
  */
269
253
  interface Component$1 {
270
- component?: boolean;
271
- componentFramework?: string;
272
- componentGenerics?: {
273
- [k: string]: unknown;
274
- };
275
- componentPlaceholder?: {
276
- [k: string]: unknown;
277
- };
278
- styleIsolation?: "isolated" | "apply-shared" | "shared";
279
- usingComponents?: {
280
- [k: string]: string;
281
- };
254
+ component?: boolean;
255
+ componentFramework?: string;
256
+ componentGenerics?: {
282
257
  [k: string]: unknown;
258
+ };
259
+ componentPlaceholder?: {
260
+ [k: string]: unknown;
261
+ };
262
+ styleIsolation?: "isolated" | "apply-shared" | "shared";
263
+ usingComponents?: {
264
+ [k: string]: string;
265
+ };
266
+ [k: string]: unknown;
283
267
  }
284
268
  /**
285
269
  * This file was automatically generated by json-schema-to-typescript.
@@ -290,50 +274,50 @@ interface Component$1 {
290
274
  * 页面配置, 支持对单个页面进行配置,可以在页面对应的 .json 文件来对本页面的表现进行配置
291
275
  */
292
276
  interface Page$1 {
293
- backgroundColor?: string;
294
- backgroundColorBottom?: string;
295
- backgroundColorContent?: string;
296
- backgroundColorTop?: string;
297
- backgroundTextStyle?: "dark" | "light";
298
- componentFramework?: string;
299
- componentPlaceholder?: {
300
- [k: string]: unknown;
301
- };
302
- disableScroll?: boolean;
303
- enablePassiveEvent?: {
304
- [k: string]: unknown;
305
- } | boolean;
306
- enablePullDownRefresh?: boolean;
307
- handleWebviewPreload?: "static" | "manual" | "auto";
308
- homeButton?: boolean;
309
- initialRenderingCache?: "static" | "dynamic";
310
- navigationBarBackgroundColor?: string;
311
- navigationBarTextStyle?: string;
312
- navigationBarTitleText?: string;
313
- navigationStyle?: "default" | "custom";
314
- onReachBottomDistance?: number;
315
- pageOrientation?: "portrait" | "auto" | "landscape";
316
- renderer?: "webview" | "skyline";
317
- rendererOptions?: {
318
- skyline?: {
319
- defaultContentBox?: boolean;
320
- defaultDisplayBlock?: boolean;
321
- disableABTest?: boolean;
322
- [k: string]: unknown;
323
- };
324
- [k: string]: unknown;
325
- };
326
- restartStrategy?: "homePage" | "homePageAndLatestPage";
327
- singlePage?: {
328
- [k: string]: unknown;
329
- };
330
- style?: string;
331
- styleIsolation?: "page-isolated" | "page-apply-shared" | "page-shared";
332
- usingComponents?: {
333
- [k: string]: string;
277
+ backgroundColor?: string;
278
+ backgroundColorBottom?: string;
279
+ backgroundColorContent?: string;
280
+ backgroundColorTop?: string;
281
+ backgroundTextStyle?: "dark" | "light";
282
+ componentFramework?: string;
283
+ componentPlaceholder?: {
284
+ [k: string]: unknown;
285
+ };
286
+ disableScroll?: boolean;
287
+ enablePassiveEvent?: {
288
+ [k: string]: unknown;
289
+ } | boolean;
290
+ enablePullDownRefresh?: boolean;
291
+ handleWebviewPreload?: "static" | "manual" | "auto";
292
+ homeButton?: boolean;
293
+ initialRenderingCache?: "static" | "dynamic";
294
+ navigationBarBackgroundColor?: string;
295
+ navigationBarTextStyle?: string;
296
+ navigationBarTitleText?: string;
297
+ navigationStyle?: "default" | "custom";
298
+ onReachBottomDistance?: number;
299
+ pageOrientation?: "portrait" | "auto" | "landscape";
300
+ renderer?: "webview" | "skyline";
301
+ rendererOptions?: {
302
+ skyline?: {
303
+ defaultContentBox?: boolean;
304
+ defaultDisplayBlock?: boolean;
305
+ disableABTest?: boolean;
306
+ [k: string]: unknown;
334
307
  };
335
- visualEffectInBackground?: "none" | "hidden";
336
308
  [k: string]: unknown;
309
+ };
310
+ restartStrategy?: "homePage" | "homePageAndLatestPage";
311
+ singlePage?: {
312
+ [k: string]: unknown;
313
+ };
314
+ style?: string;
315
+ styleIsolation?: "page-isolated" | "page-apply-shared" | "page-shared";
316
+ usingComponents?: {
317
+ [k: string]: string;
318
+ };
319
+ visualEffectInBackground?: "none" | "hidden";
320
+ [k: string]: unknown;
337
321
  }
338
322
  /**
339
323
  * This file was automatically generated by json-schema-to-typescript.
@@ -344,14 +328,14 @@ interface Page$1 {
344
328
  * https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/sitemap.html
345
329
  */
346
330
  interface Sitemap$1 {
347
- rules: {
348
- action?: "allow" | "disallow";
349
- matching?: "exact" | "inclusive" | "exclusive" | "partial";
350
- page: string;
351
- params?: string[];
352
- priority?: number;
353
- }[];
354
- [k: string]: unknown;
331
+ rules: {
332
+ action?: "allow" | "disallow";
333
+ matching?: "exact" | "inclusive" | "exclusive" | "partial";
334
+ page: string;
335
+ params?: string[];
336
+ priority?: number;
337
+ }[];
338
+ [k: string]: unknown;
355
339
  }
356
340
  /**
357
341
  * This file was automatically generated by json-schema-to-typescript.
@@ -359,13 +343,13 @@ interface Sitemap$1 {
359
343
  * and run json-schema-to-typescript to regenerate this file.
360
344
  */
361
345
  interface Theme$1 {
362
- dark: {
363
- [k: string]: unknown;
364
- };
365
- light: {
366
- [k: string]: unknown;
367
- };
346
+ dark: {
347
+ [k: string]: unknown;
348
+ };
349
+ light: {
368
350
  [k: string]: unknown;
351
+ };
352
+ [k: string]: unknown;
369
353
  }
370
354
  /**
371
355
  * This file was automatically generated by json-schema-to-typescript.
@@ -376,16 +360,17 @@ interface Theme$1 {
376
360
  * https://developers.weixin.qq.com/miniprogram/dev/framework/plugin/development.html#%E6%8F%92%E4%BB%B6%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6
377
361
  */
378
362
  interface Plugin$1 {
379
- main?: string;
380
- pages?: {
381
- [k: string]: string;
382
- };
383
- publicComponents?: {
384
- [k: string]: string;
385
- };
386
- [k: string]: unknown;
363
+ main?: string;
364
+ pages?: {
365
+ [k: string]: string;
366
+ };
367
+ publicComponents?: {
368
+ [k: string]: string;
369
+ };
370
+ [k: string]: unknown;
387
371
  }
388
-
372
+ //#endregion
373
+ //#region src/type.d.ts
389
374
  /**
390
375
  * @description app.json 类型定义
391
376
  */
@@ -410,33 +395,35 @@ type Theme = Theme$1;
410
395
  * @description plugin.json 类型定义
411
396
  */
412
397
  type Plugin = Plugin$1;
413
-
398
+ //#endregion
399
+ //#region src/json.d.ts
414
400
  declare const JSON_SCHEMA_DEFINITIONS: readonly [{
415
- filename: "app.json";
416
- typeName: "App";
417
- schema: unknown;
401
+ filename: "app.json";
402
+ typeName: "App";
403
+ schema: unknown;
418
404
  }, {
419
- filename: "component.json";
420
- typeName: "Component";
421
- schema: unknown;
405
+ filename: "component.json";
406
+ typeName: "Component";
407
+ schema: unknown;
422
408
  }, {
423
- filename: "page.json";
424
- typeName: "Page";
425
- schema: unknown;
409
+ filename: "page.json";
410
+ typeName: "Page";
411
+ schema: unknown;
426
412
  }, {
427
- filename: "sitemap.json";
428
- typeName: "Sitemap";
429
- schema: unknown;
413
+ filename: "sitemap.json";
414
+ typeName: "Sitemap";
415
+ schema: unknown;
430
416
  }, {
431
- filename: "theme.json";
432
- typeName: "Theme";
433
- schema: unknown;
417
+ filename: "theme.json";
418
+ typeName: "Theme";
419
+ schema: unknown;
434
420
  }, {
435
- filename: "plugin.json";
436
- typeName: "Plugin";
437
- schema: unknown;
421
+ filename: "plugin.json";
422
+ typeName: "Plugin";
423
+ schema: unknown;
438
424
  }];
439
-
425
+ //#endregion
426
+ //#region src/index.d.ts
440
427
  /**
441
428
  * @description 生成 JS 模板(app/page/component)
442
429
  */
@@ -453,5 +440,5 @@ declare function generateWxml(filepath?: string): string;
453
440
  * @description 生成 JSON/JS/TS 模板
454
441
  */
455
442
  declare function generateJson(type?: GenerateType, ext?: JsonExt): string;
456
-
457
- export { type App, type Component, type GenerateType, JSON_SCHEMA_DEFINITIONS, type Page, type Plugin, type Sitemap, type Theme, generateJs, generateJson, generateWxml, generateWxss };
443
+ //#endregion
444
+ export { type App, type Component, type GenerateType, JSON_SCHEMA_DEFINITIONS, type Page, type Plugin, type Sitemap, type Theme, generateJs, generateJson, generateWxml, generateWxss };