vuepress-theme-hope
Version:
A light vuepress theme with tons of features
24 lines • 661 B
TypeScript
import type { BlogTypeOptions } from "@vuepress/plugin-blog";
export 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>;
}
export declare const getRecentUpdatedArticles: ({ path, locales, }: RecentUpdateArticlesOptions) => BlogTypeOptions;
//# sourceMappingURL=getRecentUpdatedArticles.d.ts.map