hirsun-vuepress-theme-hope-plus
Version:
A light vuepress theme with tons of features and typewriter effect
10 lines (9 loc) • 581 B
TypeScript
import type { FunctionalComponent, VNode } from "vue";
import type { ThemeProjectHomeFeatureOptions, ThemeProjectHomeHighlightItem } from "../../shared/index.js";
import "../styles/feature-panel.scss";
declare const FeaturePanel: FunctionalComponent<ThemeProjectHomeFeatureOptions, Record<never, never>, {
image?: (props: ThemeProjectHomeFeatureOptions) => VNode[] | VNode | null;
info?: (props: ThemeProjectHomeFeatureOptions) => VNode[] | VNode | null;
highlights?: (props: ThemeProjectHomeHighlightItem[]) => VNode[] | VNode | null;
}>;
export default FeaturePanel;