hirsun-vuepress-theme-hope-plus
Version:
A light vuepress theme with tons of features and typewriter effect
24 lines (23 loc) • 630 B
TypeScript
import type { ThemePageFrontmatter } from "./base.js";
export interface ThemeHopePageFrontmatter extends ThemePageFrontmatter {
home: true;
/**
* @default false
*/
heroFullScreen?: boolean;
heroImage?: string;
heroImageDark?: string;
heroImageStyle?: Record<string, string> | string;
heroAlt?: string;
heroText?: string;
/**
* Text array for typewriter effect
*
* 打字机效果的文字数组
*/
heroTexts?: string[];
tagline?: string;
bgImage?: string | false;
bgImageDark?: string | false;
bgImageStyle?: Record<string, string> | string;
}