vuepress-theme-hope
Version:
A light vuepress theme with tons of features
11 lines (10 loc) • 569 B
TypeScript
import type { Slot } from "@vuepress/helper/client";
import type { FunctionalComponent } from "vue";
import type { ThemeProjectHomeHighlightItem, ThemeProjectHomeHighlightOptions } from "../../../shared/index.js";
import "../../styles/home/highlight-panel.scss";
declare const HighlightSection: FunctionalComponent<ThemeProjectHomeHighlightOptions, Record<never, never>, {
image?: Slot<ThemeProjectHomeHighlightOptions>;
info?: Slot<ThemeProjectHomeHighlightOptions>;
highlights?: Slot<ThemeProjectHomeHighlightItem[]>;
}>;
export default HighlightSection;