hirsun-vuepress-theme-hope-plus
Version:
A light vuepress theme with tons of features and typewriter effect
11 lines (10 loc) • 442 B
TypeScript
import type { ComputedRef, InjectionKey } from "vue";
import type { BlogTypeData } from "vuepress-plugin-blog2/client";
import type { ArticleInfo } from "../../../../shared/index.js";
export type ArticlesRef = ComputedRef<BlogTypeData<ArticleInfo>>;
export declare const articlesSymbol: InjectionKey<ArticlesRef>;
/**
* Inject articles
*/
export declare const useArticles: () => ArticlesRef;
export declare const setupArticles: () => void;