vuepress-theme-hope
Version:
A light vuepress theme with tons of features
10 lines • 623 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;
//# sourceMappingURL=FeaturePanel.d.ts.map