@hopepaddy/dumi-theme
Version:
dumi-theme-hopepaddy is a documentation site theme package designed for dumi2. It provides a more beautiful and user-friendly development and reading experience based on @lobehub/ui
10 lines (9 loc) • 339 B
TypeScript
import { type FeatureItem } from '@lobehub/ui';
import { SiteStore } from '../useSiteStore';
export declare const heroSelectors: {
features: (s: SiteStore) => FeatureItem[];
heroActions: (s: SiteStore) => any;
heroDesc: (s: SiteStore) => any;
heroTitle: (s: SiteStore) => any;
isHeroPage: (s: SiteStore) => boolean;
};