vuepress-theme-hope
Version:
A light vuepress theme with tons of features
11 lines • 442 B
TypeScript
import type { ComputedRef } from "vue";
export interface MetaInfo {
/** Whether to show "changelog" or not */
changelog: ComputedRef<boolean>;
/** Whether to show "Contributors" or not */
contributors: ComputedRef<"content" | "meta" | boolean>;
/** Whether to show "Last updated" or not */
lastUpdated: ComputedRef<boolean>;
}
export declare const useMetaInfo: () => MetaInfo;
//# sourceMappingURL=useMetaInfo.d.ts.map