@rspress/shared 1.16.0 → 1.16.2
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 +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -410,6 +410,10 @@ interface UserConfig<ThemeConfig = Config$1> {
|
|
410
410
|
dark: string;
|
411
411
|
light: string;
|
412
412
|
};
|
413
|
+
/**
|
414
|
+
* The text of the logo in nav bar.
|
415
|
+
*/
|
416
|
+
logoText?: string;
|
413
417
|
/**
|
414
418
|
* Base path of the site.
|
415
419
|
*/
|
@@ -533,6 +537,7 @@ interface SiteData<ThemeConfig = NormalizedConfig> {
|
|
533
537
|
dark: string;
|
534
538
|
light: string;
|
535
539
|
};
|
540
|
+
logoText: string;
|
536
541
|
pages: BaseRuntimePageInfo[];
|
537
542
|
search: SearchOptions;
|
538
543
|
ssg: boolean;
|