hirsun-vuepress-theme-hope-plus
Version:
A light vuepress theme with tons of features and typewriter effect
11 lines (10 loc) • 421 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 StarsRef = ComputedRef<BlogTypeData<ArticleInfo>>;
export declare const starsSymbol: InjectionKey<StarsRef>;
/**
* Inject stars
*/
export declare const useStars: () => StarsRef;
export declare const setupStars: () => void;