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