@rspress/shared 0.0.0-nightly-20231212160307 → 0.0.0-nightly-20231213160153
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
@@ -111,6 +111,10 @@ interface Config$1 {
|
|
111
111
|
* The next page text.
|
112
112
|
*/
|
113
113
|
nextPageText?: string;
|
114
|
+
/**
|
115
|
+
* The source code text.
|
116
|
+
*/
|
117
|
+
sourceCodeText?: string;
|
114
118
|
/**
|
115
119
|
* Locale config
|
116
120
|
*/
|
@@ -150,6 +154,7 @@ interface LocaleConfig {
|
|
150
154
|
editLink?: EditLink;
|
151
155
|
prevPageText?: string;
|
152
156
|
nextPageText?: string;
|
157
|
+
sourceCodeText?: string;
|
153
158
|
langRoutePrefix?: string;
|
154
159
|
}
|
155
160
|
type Nav = NavItem[] | {
|