valaxy 0.26.2 → 0.26.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.
@@ -1,778 +1,12 @@
1
- import { V as ValaxyAddon, D as DefaultTheme } from '../shared/valaxy.D_ue8jlC.mjs';
2
- import { FuseOptions } from '@vueuse/integrations/useFuse';
3
- import { ZoomOptions } from 'medium-zoom';
4
- import { ILazyLoadOptions } from 'vanilla-lazyload';
5
- import { RouteRecordRaw } from 'vue-router';
6
- import { NodeRelations, ImageObject } from '@unhead/schema-org';
1
+ import { c as PostFrontMatter, d as PageFrontMatter } from '../shared/valaxy.BwiZu4ms.mjs';
2
+ export { A as Album, B as BaseFrontMatter, D as DefaultTheme, E as ExcerptType, F as FuseListItem, P as PartialDeep, i as Photo, g as Pkg, a as RedirectItem, f as RedirectRule, R as RuntimeConfig, S as SiteConfig, e as SocialLink, U as UserSiteConfig, h as UserValaxyConfig, b as ValaxyAddon, V as ValaxyConfig } from '../shared/valaxy.BwiZu4ms.mjs';
7
3
  import { Header } from '@valaxyjs/utils';
4
+ import '@vueuse/integrations/useFuse';
5
+ import 'medium-zoom';
6
+ import 'vanilla-lazyload';
7
+ import 'vue-router';
8
8
  import '@vueuse/core';
9
-
10
- interface CollectionConfig {
11
- title?: string;
12
- key?: string;
13
- /**
14
- * if key is not provided, path is required
15
- *
16
- * if key is provided, path = `/collections/${key}`
17
- */
18
- path?: string;
19
- /**
20
- * @en
21
- * The name of the collection.
22
- *
23
- * @zh
24
- * 合集名称
25
- */
26
- name?: string;
27
- cover?: string;
28
- description?: string;
29
- categories?: string[];
30
- tags?: string[];
31
- /**
32
- * items
33
- */
34
- items?: {
35
- title?: string;
36
- /**
37
- * 合集文章的唯一索引
38
- *
39
- * 对应路径为 `/collections/${key}/${item.key}`
40
- */
41
- key?: string;
42
- }[];
43
- }
44
-
45
- interface Album {
46
- /**
47
- * @description:en-US Album Link
48
- */
49
- url: string;
50
- /**
51
- * @description:en-US Album cover
52
- * url
53
- */
54
- cover: string;
55
- /**
56
- * @description:en-US Album caption
57
- */
58
- caption: string;
59
- /**
60
- * @description:en-US Album description
61
- */
62
- desc: string;
63
- }
64
- interface Photo {
65
- src: string;
66
- caption: string;
67
- desc: string;
68
- }
69
- interface BaseFrontMatter extends Record<string, any> {
70
- /**
71
- * Title
72
- * @description 文章标题
73
- *
74
- * ```md
75
- * ---
76
- * title: Post Title
77
- * ---
78
- * ```
79
- *
80
- * i18n:
81
- *
82
- * ```md
83
- * ---
84
- * title:
85
- * en: Post Title
86
- * zh-CN: 文章标题
87
- * ---
88
- * ```
89
- */
90
- title: string | Record<string, string>;
91
- /**
92
- * @description:en-US Created Date
93
- * @description:zh-CN 文章创建日期
94
- */
95
- date: string | number | Date;
96
- /**
97
- * Updated Time
98
- */
99
- updated: string | number | Date;
100
- }
101
- interface PageFrontMatter extends BaseFrontMatter {
102
- /**
103
- * Path of post
104
- * route.path
105
- * @description 路径
106
- */
107
- path: string;
108
- /**
109
- * abbrlink
110
- *
111
- * generated by valaxy-addon-abbrlink, do not manually modify
112
- *
113
- * just compatible for [hexo-abbrlink](https://github.com/ohroy/hexo-abbrlink)
114
- */
115
- abbrlink: string;
116
- /**
117
- * i18n
118
- */
119
- lang: string;
120
- /**
121
- * @description Author
122
- * @description:zh-CN 作者
123
- */
124
- author: string;
125
- /**
126
- * Display sponsor info
127
- * @description 是否开启赞助
128
- */
129
- sponsor: boolean;
130
- /**
131
- * Copyright
132
- * @description 是否显示文章底部版权信息
133
- */
134
- copyright: boolean;
135
- /**
136
- * for seo
137
- * schema
138
- */
139
- image: NodeRelations<ImageObject | string>;
140
- /**
141
- * cover
142
- * @description 封面图片
143
- */
144
- cover: string;
145
- /**
146
- * display toc
147
- * @description 是否显示目录
148
- */
149
- toc: boolean;
150
- /**
151
- * display right sidebar
152
- * @description 是否显示右侧侧边栏
153
- */
154
- aside: boolean;
155
- /**
156
- * display left sidebar
157
- * @description 是否显示左侧侧边栏
158
- */
159
- sidebar: boolean;
160
- /**
161
- * @description:en-US Custom Markdown class
162
- * @description:zh-CN 自定义 Markdown 样式
163
- * @default 'markdown-body'
164
- */
165
- markdownClass: string;
166
- /**
167
- * @description:en-US Post title class
168
- * @description:zh-CN 文章标题样式
169
- */
170
- pageTitleClass: string;
171
- /**
172
- * icon before title
173
- * @description 标题前的图标
174
- */
175
- icon: string;
176
- /**
177
- * title color
178
- * @deprecated Please use `pageTitleClass` | `postTitleClass` instead
179
- */
180
- color: string;
181
- /**
182
- * display comment
183
- */
184
- comment: boolean;
185
- /**
186
- * post is end
187
- * @description 是否完结,将在末尾添加衬线字体 Q.E.D.
188
- */
189
- end: boolean;
190
- /**
191
- * use katex
192
- * @url https://katex.org/
193
- */
194
- katex: boolean;
195
- /**
196
- * use codepen
197
- * @url https://codepen.io/
198
- */
199
- codepen: boolean;
200
- /**
201
- * use medium-zoom
202
- * @url https://github.com/francoischalifour/medium-zoom
203
- */
204
- medium_zoom: boolean;
205
- /**
206
- * @description:en-US Albums
207
- * @description:zh-CN 相册
208
- */
209
- albums: Album[];
210
- /**
211
- * For layout Gallery
212
- * @description:en-US Photos
213
- */
214
- photos: Photo[];
215
- /**
216
- * for collections
217
- */
218
- collections: CollectionConfig[];
219
- /**
220
- * @description:zh-CN 是否启用加密,password 存在时默认为 true
221
- */
222
- encrypt: boolean;
223
- /**
224
- * @description:zh-CN 加密密码
225
- */
226
- password?: string;
227
- /**
228
- * @description:zh-CN 密码提示
229
- */
230
- password_hint?: string;
231
- /**
232
- * @description:zh-CN 相册密码
233
- */
234
- gallery_password?: string;
235
- /**
236
- * @en
237
- * @description encrypted content
238
- *
239
- * @description:zh-CN 加密后的内容
240
- */
241
- encryptedContent?: string;
242
- /**
243
- * @description:zh-CN 部分加密的内容
244
- */
245
- partiallyEncryptedContents?: string[];
246
- /**
247
- * @description:zh-CN 加密后的相册
248
- */
249
- encryptedPhotos?: string;
250
- /**
251
- * @description:en-US Limit the height of the code block in px
252
- * @description:zh-CN 限制代码块的高度,单位是 px
253
- */
254
- codeHeightLimit?: number;
255
- /**
256
- * @description:en-US Source path for client redirection
257
- * @description:zh-CN 客户端重定向的源路径
258
- */
259
- from?: string | string[];
260
- }
261
-
262
- type ExcerptType = 'md' | 'html' | 'text' | 'ai';
263
- interface PostFrontMatter extends PageFrontMatter {
264
- /**
265
- * @description:en-US Custom post title class in post list
266
- * @description:zh-CN 文章列表中 自定义标题样式
267
- */
268
- postTitleClass: string;
269
- /**
270
- * @description:en-US Post Card Type, can be bilibili/yuque/... (need theme support)
271
- * @description:zh-CN 卡片类型,可以是 bilibili/yuque/... (需主题支持)
272
- */
273
- type: 'bilibili' | 'yuque' | string;
274
- /**
275
- * @en override url, and jump directly
276
- * @zh 覆盖 post url,直接跳转
277
- */
278
- url: string;
279
- /**
280
- * @description:en-US custom excerpt, `excerpt_type` will be invalid
281
- * @description 手动指定摘要,此时 `excerpt_type` 将会无效
282
- */
283
- excerpt: string;
284
- /**
285
- * @description 摘要类型
286
- * @default 'html'
287
- * render type of excerpt
288
- * - md: render as raw markdown
289
- * - html: render as html
290
- * - text: render as text
291
- */
292
- excerpt_type: 'md' | 'text' | 'html' | 'ai';
293
- /**
294
- * @description:en-US Category, if it is an array, it represents multiple folders in order
295
- * @description:zh-CN 分类,若为数组,则按顺序代表多层文件夹
296
- */
297
- categories: string | string[];
298
- /**
299
- * @description:en-US Tags, can have multiple
300
- * @description:zh-CN 标签,可以有多个
301
- */
302
- tags: string[];
303
- /**
304
- * @description:en-US Whether to display the previous and next navigation
305
- * @description:zh-CN 是否显示前一篇、后一篇导航
306
- */
307
- nav: boolean;
308
- /**
309
- * @description:en-US Pin to top, the larger the number, the closer to the front
310
- * @description:zh-CN 置顶,数字越大越靠前
311
- */
312
- top: number;
313
- /**
314
- * @description:en-US Whether it is a draft, it will only be displayed during development
315
- * @description:zh-CN 是否为草稿,将仅在开发时被展示
316
- */
317
- draft: boolean;
318
- /**
319
- * hide in index
320
- * - true/`all`: hide in index & archive
321
- * - `index`: hide in index
322
- * @description 是否隐藏
323
- */
324
- hide: 'index' | boolean;
325
- /**
326
- * @en
327
- * when the post is updated more than 30 days ago, show a warning
328
- * default 30 days, you can set `time_warning` in frontmatter to change it
329
- *
330
- * @zh
331
- * 当文章更新时间超过 30 天时,显示一个警告
332
- * 默认 30 天,你可以在 frontmatter 中设置 `time_warning` (数字)来修改,单位 ms
333
- * @example 3600000
334
- */
335
- time_warning: boolean | number;
336
- /**
337
- * @protected
338
- * @see https://valaxy.site/guide/config/#%E9%98%85%E8%AF%BB%E7%BB%9F%E8%AE%A1
339
- * @tutorial ⚠️ DO NOT SET MANUALLY (generated by `site.config.ts` -> `statistics.enable: true`)
340
- * You can use `statistics.readTime.speed` to change the speed of reading time.
341
- * @description:en-US Reading time
342
- * @description:zh-CN 阅读时间
343
- */
344
- readingTime: number;
345
- /**
346
- * @protected
347
- * @see https://valaxy.site/guide/config/#%E9%98%85%E8%AF%BB%E7%BB%9F%E8%AE%A1
348
- * @tutorial ⚠️ DO NOT SET MANUALLY (generated by `site.config.ts` -> `statistics.enable: true`)
349
- * You need enable `statistics` in site config to use this feature.
350
- * @description:en-US Word count
351
- * @description:zh-CN 字数统计
352
- */
353
- wordCount: string;
354
- }
355
-
356
- interface FuseListItem extends Record<string, any> {
357
- title: string | Record<string, string>;
358
- excerpt?: string;
359
- author: string;
360
- tags: string[];
361
- categories: string[];
362
- link: string;
363
- content?: string;
364
- }
365
-
366
- /**
367
- * @zh 社交链接
368
- */
369
- interface SocialLink {
370
- /**
371
- * The title of your link
372
- */
373
- name: string;
374
- link: string;
375
- /**
376
- * 图标名称
377
- * https://icones.js.org/
378
- */
379
- icon: string;
380
- /**
381
- * @zh 图标颜色
382
- */
383
- color: string;
384
- }
385
- interface RedirectRule {
386
- to: string;
387
- from: string | string[];
388
- }
389
- interface RedirectItem {
390
- from: string;
391
- to: string;
392
- }
393
- interface SiteConfig {
394
- /**
395
- * enable auto (light/dark mode)
396
- * @default 'auto'
397
- */
398
- mode: 'light' | 'dark' | 'auto';
399
- /**
400
- * Default language
401
- * @description 默认语言,设置 `zh-CN` 以改变默认语言为中文
402
- * @default 'en'
403
- */
404
- lang: string;
405
- /**
406
- * alternative languages
407
- * @description 可选语言
408
- * @en If you want to disable multi-language support for your site, you can set this to only include one language (e.g. `['en']`)
409
- * @zh 如果你想要禁言站点的多语言支持,可以将此项设置为仅包含一个语言 (例如 `['zh-CN']`)
410
- * @default ['en', 'zh-CN']
411
- * @see https://ogp.me/#optional
412
- */
413
- languages: string[];
414
- /**
415
- * You site url in web, required for ssg & rss
416
- * @description 站点的完整 URL,SSG & RSS 需要(譬如生成版权处文章永久链接)
417
- * @example 'https://valaxy.site'
418
- * @default '/'
419
- */
420
- /**
421
- * @see https://wikipedia.org/wiki/List_of_tz_database_time_zones
422
- * @en_US Timezone configuration
423
- * @zh_CN 时区配置,国内推荐使用 'Asia/Shanghai'
424
- * @description:en-US This configuration is used to generate times with timezone when no timezone is set
425
- * @description:zh-CN 当时间没有设置时区时,使用该配置生成带时区的时间
426
- * @default ''
427
- */
428
- timezone: string;
429
- url: string;
430
- /**
431
- * Site title
432
- * @description 站点标题
433
- */
434
- title: string;
435
- /**
436
- * 副标题
437
- */
438
- subtitle: string;
439
- /**
440
- * 站点描述
441
- */
442
- description: string;
443
- /**
444
- * The owner of this blog
445
- * @description 博客作者
446
- */
447
- author: {
448
- /**
449
- * Your name
450
- * @description 你的名字
451
- */
452
- name: string;
453
- email: string;
454
- link: string;
455
- avatar: string;
456
- /**
457
- * The status of you
458
- * @description 状态
459
- */
460
- status: {
461
- /**
462
- * Emoji representation of your status like '👨‍💻'
463
- * @description 你的状态的 Emoji 表示,如 '👨‍💻'
464
- */
465
- emoji: string;
466
- /**
467
- * show when hover emoji
468
- * @description 当鼠标悬浮在图标上时显示
469
- */
470
- message: string;
471
- };
472
- /**
473
- * @zh 个人简介
474
- */
475
- intro?: string;
476
- };
477
- /**
478
- * show last updated time by git/mtime
479
- */
480
- lastUpdated: boolean;
481
- /**
482
- * icon for your website
483
- */
484
- favicon: string;
485
- feed: {
486
- /**
487
- * name: feed -> feed.xml / feed.atom / feed.json
488
- * @default '' -> feed.xml / atom.xml / feed.json
489
- */
490
- name: string;
491
- favicon: string;
492
- };
493
- /**
494
- * 社交链接
495
- */
496
- social: SocialLink[];
497
- /**
498
- * @en search engine for your site
499
- * @zh 搜索功能
500
- */
501
- search: {
502
- /**
503
- * @zh 是否启用
504
- */
505
- enable: boolean;
506
- /**
507
- * Search Type
508
- * - algolia: Algolia Search
509
- * - engine: Engine Search, like Google/Baidu
510
- * - fuse: Local Search by fuse.js
511
- */
512
- type: 'algolia' | 'engine' | 'fuse';
513
- };
514
- /**
515
- *
516
- * fuse search
517
- * @see https://fusejs.io/
518
- * @description 本地搜索
519
- * Please set search.type to 'fuse'
520
- */
521
- fuse: {
522
- /**
523
- * @default 'valaxy-fuse-list.json'
524
- * @description 搜索结果列表数据所在路径
525
- */
526
- dataPath: string;
527
- /**
528
- * fast-glob pattern to match Fuse List Data
529
- * @default `pages\/**\/*.md`
530
- * ```ts
531
- * await fg(`${userRoot}/pages/posts/**\/*.md`)
532
- * ```
533
- */
534
- pattern?: string;
535
- /**
536
- * @see https://fusejs.io/api/options.html
537
- */
538
- options: FuseOptions<FuseListItem> & {
539
- /**
540
- * @en_US The fields to be searched.
541
- * @zh_CN 搜索的字段
542
- * @default ['title', 'tags', 'categories', 'excerpt']
543
- * @description:en-US List of keys that will be searched. This supports nested paths, weighted search, and searching in arrays of strings and objects
544
- * @description:zh-CN 搜索将会涉及的字段列表,支持嵌套路径、加权搜索以及在字符串和对象数组中进行搜索
545
- * @see https://fusejs.io/api/options.html#keys
546
- */
547
- keys: FuseOptions<FuseListItem>['keys'];
548
- };
549
- };
550
- /**
551
- * set post default frontmatter
552
- */
553
- frontmatter: Partial<PostFrontMatter>;
554
- /**
555
- * comment: waline/...
556
- */
557
- comment: {
558
- enable: boolean;
559
- };
560
- /**
561
- * third-party plugin need cdn
562
- * aplayer, twikoo
563
- * @default 'https://unpkg.com/'
564
- */
565
- cdn: {
566
- /**
567
- * prefix for your third-party
568
- * @default 'https://unpkg.com/'
569
- */
570
- prefix: string;
571
- };
572
- /**
573
- * The license of your posts
574
- * @description 文章所使用的协议,默认使用 Creative Commons
575
- * @default https://creativecommons.org/licenses/
576
- */
577
- license: {
578
- /**
579
- * Whether to show at the bottom of the article
580
- * @description 是否显示在文章底部
581
- * @default true
582
- */
583
- enabled: boolean;
584
- /**
585
- * Creative License Language, same with your config.lang
586
- * when lang === 'zh-CN', use 'zh'
587
- * @description 默认与站点语言相同
588
- * @default 'en'
589
- */
590
- language: string;
591
- /**
592
- * Type of license
593
- * @description 证书类型
594
- * @default 'by-nc-sa'
595
- */
596
- type: 'zero' | 'by-sa' | 'by-nd' | 'by-nc' | 'by-nc-sa' | 'by-nc-nd';
597
- };
598
- /**
599
- * donate for author
600
- * @description 打赏/赞助
601
- */
602
- sponsor: {
603
- enable: boolean;
604
- /**
605
- * Donate button title attribute
606
- * @description 打赏按钮的 title 属性
607
- * @default zh:'打赏' en:'Donate'
608
- */
609
- title?: string;
610
- /**
611
- * Donate content description
612
- * @description 打赏的描述内容,在按钮下方所有图片上方,与图片一起折叠
613
- * @default undefined 不显示内容
614
- */
615
- description?: string;
616
- /**
617
- * @zh 赞助方式
618
- */
619
- methods: {
620
- name: string;
621
- url: string;
622
- color: string;
623
- icon: string;
624
- }[];
625
- };
626
- /**
627
- * image preview by medium-zoom
628
- * @url https://github.com/francoischalifour/medium-zoom
629
- */
630
- mediumZoom: {
631
- /**
632
- * @zh 启用图片预览
633
- */
634
- enable: boolean;
635
- /**
636
- * For example: '.markdown-body img'
637
- * @default '' content.value querySelectorAll('img')
638
- */
639
- selector: string | HTMLElement | HTMLElement[];
640
- /**
641
- * @zh 配置项
642
- * @see https://github.com/francoischalifour/medium-zoom#options
643
- */
644
- options: ZoomOptions;
645
- };
646
- /**
647
- * lazyload by vanilla-lazyload and markdown-it-image-figures
648
- * when vanillaLazyLoad.enable is true, imageFigures removeSrc is true, classes is 'lazy'
649
- * @see https://github.com/verlok/vanilla-lazyload
650
- */
651
- vanillaLazyload: {
652
- enable: boolean;
653
- options: ILazyLoadOptions;
654
- };
655
- /**
656
- * Floating Vue configuration for floating footnote tooltips.
657
- * @see https://floating-vue.starpad.dev/guide/config
658
- */
659
- floatingVue: any;
660
- /**
661
- * displayed posts length in every page
662
- * @default 7
663
- */
664
- pageSize: number;
665
- /**
666
- * statistics readingTime and wordCount
667
- * @description 统计阅读时间和字数
668
- */
669
- statistics: {
670
- enable: boolean;
671
- readTime: {
672
- speed: {
673
- /**
674
- * Chinese word count speed
675
- * @description 中文每分钟阅读字数
676
- * @default 300 (300 字/分钟)
677
- */
678
- cn: number;
679
- /**
680
- * English word count speed
681
- * @description 英文每分钟阅读字数
682
- * @default 100 (200 字/分钟)
683
- */
684
- en: number;
685
- };
686
- };
687
- };
688
- /**
689
- * @description Encrypt article
690
- * @description:zh-CN 加密文章
691
- * default algorithm: AES-CBC
692
- */
693
- encrypt: {
694
- enable: boolean;
695
- /**
696
- * [encrypt](https://developer.mozilla.org/zh-CN/docs/Web/API/SubtleCrypto/encrypt#%E6%94%AF%E6%8C%81%E7%9A%84%E7%AE%97%E6%B3%95)
697
- * @default AES-CBC
698
- */
699
- algorithm: string;
700
- iv: Uint8Array;
701
- salt: Uint8Array;
702
- };
703
- /**
704
- * @description:en-US Limit the height of the code block in px
705
- * @description:zh-CN 限制代码块的高度,单位是 px
706
- */
707
- codeHeightLimit?: number;
708
- /**
709
- * @description:en-US client redirect rules
710
- * @description:zh-CN 客户端重定向规则
711
- */
712
- redirects?: {
713
- useVueRouter?: boolean;
714
- rules?: RedirectRule[];
715
- };
716
- }
717
- type PartialDeep<T> = {
718
- [P in keyof T]?: T[P] extends object ? PartialDeep<T[P]> : T[P];
719
- };
720
- /**
721
- * config generated by runtime
722
- */
723
- interface RuntimeConfig {
724
- addons: Record<string, ValaxyAddon>;
725
- redirects: {
726
- useVueRouter: boolean;
727
- redirectRoutes: RouteRecordRaw[];
728
- };
729
- }
730
- interface Pkg {
731
- name: string;
732
- version: string;
733
- homepage?: string;
734
- [key: string]: any;
735
- }
736
- interface ValaxyConfig<ThemeConfig = DefaultTheme.Config> {
737
- /**
738
- * @en Site **info** config. This affects info displayed on the site, and is independent of themes.
739
- * @zh 站点**信息**配置,这部分内容面向站点展示,且在不同主题中也是通用的格式
740
- * @see [站点配置 | Valaxy](https://valaxy.site/guide/config#%E7%AB%99%E7%82%B9%E9%85%8D%E7%BD%AE)
741
- * @see [Site Config | Valaxy](https://valaxy.site/guide/config#site-config)
742
- */
743
- siteConfig: SiteConfig;
744
- /**
745
- * The name of theme
746
- * @description 主题名称
747
- * @see 主题橱窗 [Valaxy Themes Gallery](https://valaxy.site/themes/gallery)
748
- * @see 如何编写主题? [How to write a theme? | Valaxy](https://valaxy.site/themes/write)
749
- * @see [默认 Yun 主题示例](https://yun.valaxy.site/)
750
- */
751
- theme: string;
752
- /**
753
- * The config of theme
754
- * @zh 请参考对应主题的相关文档
755
- * @description 主题配置
756
- * @see [默认 Yun 主题文档](https://github.com/YunYouJun/valaxy/blob/main/packages/valaxy-theme-yun/docs/README.md)
757
- */
758
- themeConfig: ThemeConfig & {
759
- pkg: Pkg;
760
- };
761
- /**
762
- * @en Generated in runtime, do not modify manually
763
- * @zh 在运行时生成,请勿手动修改
764
- */
765
- runtimeConfig: RuntimeConfig;
766
- }
767
- /**
768
- * user site config
769
- */
770
- type UserSiteConfig = PartialDeep<SiteConfig>;
771
- /**
772
- * Valaxy User Config
773
- * @description Valaxy 用户配置
774
- */
775
- type UserValaxyConfig<ThemeConfig = DefaultTheme.Config> = PartialDeep<ValaxyConfig<ThemeConfig>>;
9
+ import '@unhead/schema-org';
776
10
 
777
11
  type Page = Partial<PageFrontMatter>;
778
12
  type Post = Partial<PostFrontMatter>;
@@ -798,5 +32,5 @@ interface PageDataPayload {
798
32
  }
799
33
  type HeadConfig = [string, Record<string, string>] | [string, Record<string, string>, string];
800
34
 
801
- export { DefaultTheme, ValaxyAddon };
802
- export type { Album, BaseFrontMatter, CleanUrlsMode, ExcerptType, FuseListItem, HeadConfig, Page, PageData, PageDataPayload, PageFrontMatter, PartialDeep, Photo, Pkg, Post, PostFrontMatter, RedirectItem, RedirectRule, RuntimeConfig, SiteConfig, SocialLink, UserSiteConfig, UserValaxyConfig, ValaxyConfig };
35
+ export { PageFrontMatter, PostFrontMatter };
36
+ export type { CleanUrlsMode, HeadConfig, Page, PageData, PageDataPayload, Post };