hirsun-vuepress-theme-hope-plus
Version:
A light vuepress theme with tons of features and typewriter effect
12 lines (11 loc) • 333 B
TypeScript
import type { ComputedRef } from "vue";
import type { RepoType } from "vuepress-shared/client";
export interface RepoConfig {
type: Exclude<RepoType, null> | "Source";
label: string;
link: string;
}
/**
* Get navbar config of repository link
*/
export declare const useNavbarRepo: () => ComputedRef<RepoConfig | null>;