UNPKG

hirsun-vuepress-theme-hope-plus

Version:
11 lines (10 loc) 421 B
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;