vuepress-theme-hope
Version:
A light vuepress theme with tons of features
32 lines (31 loc) • 757 B
TypeScript
import { BlogTypeOptions } from "@vuepress/plugin-blog";
//#region src/presets/getRecentUpdatedArticles.d.ts
interface RecentUpdateArticlesOptions {
/**
* Path of this blog type
*
* 此博客类型的路径
*
* @default "/recent-updated/"
*/
path?: string;
/**
* Locale text for the blog type
*
* 博客类型的本地化文字
*
* @example
* ({
* "/": "Recent Updated",
* "/zh/": "最近更新",
* });
*/
locales?: Record<string, string>;
}
declare const getRecentUpdatedArticles: ({
path,
locales
}: RecentUpdateArticlesOptions) => BlogTypeOptions;
//#endregion
export { RecentUpdateArticlesOptions, getRecentUpdatedArticles };
//# sourceMappingURL=getRecentUpdatedArticles.d.ts.map