UNPKG

hirsun-vuepress-theme-hope-plus

Version:
14 lines (13 loc) 724 B
import type { ComputedRef } from "vue"; import type { AuthorInfo } from "vuepress-shared/client"; import type { PageInfoProps } from "@theme-hope/modules/info/components/PageInfo"; import type { PageCategory, PageTag } from "@theme-hope/modules/info/utils/index"; import type { PageInfo } from "../../shared/index.js"; export declare const usePageAuthor: () => ComputedRef<AuthorInfo[]>; export declare const usePageCategory: () => ComputedRef<PageCategory[]>; export declare const usePageTag: () => ComputedRef<PageTag[]>; export declare const usePageDate: () => ComputedRef<Date | null>; export declare const usePageInfo: () => { info: ComputedRef<PageInfoProps>; items: ComputedRef<PageInfo[] | false | null>; };