UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

18 lines (17 loc) 444 B
import type { AnchorProps } from 'antd'; export interface TocItemType { children?: TocItemType[]; id: string; title: string; } export interface TocMobileProps { activeKey?: string; getContainer?: AnchorProps['getContainer']; headerHeight?: number; items: TocItemType[]; onChange?: (activeKey: string) => void; tocWidth?: number; } export interface TocProps extends TocMobileProps { isMobile?: boolean; }