@rspress-theme-anatole/shared 0.1.2 → 0.1.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 +13 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -193,7 +193,20 @@ export declare interface FilterConfig {
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
export declare interface Footer {
|
|
196
|
+
group?: Link[];
|
|
196
197
|
message?: string;
|
|
198
|
+
links?: Link[];
|
|
199
|
+
social?: Social[];
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export declare interface Link {
|
|
203
|
+
text?: string;
|
|
204
|
+
link?: string;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
export declare interface Social {
|
|
208
|
+
text?: string;
|
|
209
|
+
link?: string;
|
|
197
210
|
}
|
|
198
211
|
|
|
199
212
|
export declare interface FrontMatterMeta {
|