UNPKG

slightning-coco-widget

Version:

SLIGHTNING 的 CoCo 控件框架。

12 lines (11 loc) 294 B
import type { FC, ReactNode } from 'react'; declare type SidebarProps = { indexItems: { index: string; brief: ReactNode; }[]; activeIndex: string | null; onActive: (index: string) => void; }; export declare const Sidebar: FC<SidebarProps>; export {};