vuepress-theme-hope
Version:
A light vuepress theme with tons of features
11 lines • 491 B
TypeScript
import type { BlogTypeData } from "@vuepress/plugin-blog/client";
import type { ComputedRef, InjectionKey } from "vue";
import type { ArticleInfoData } from "../../../../shared/index.js";
export type ArticlesRef = ComputedRef<BlogTypeData<ArticleInfoData>>;
export declare const articlesSymbol: InjectionKey<ArticlesRef>;
/**
* Inject articles
*/
export declare const useArticles: () => ArticlesRef;
export declare const setupArticles: () => void;
//# sourceMappingURL=useArticles.d.ts.map