UNPKG

@logicflow/dumi-theme-simple

Version:
28 lines (27 loc) 496 B
import React from 'react'; type dropdownItem = { name: { [key: string]: string; }; url: string; target?: '_blank'; }; export type INav = { slug?: string; order: number; title: { [key: string]: string; }; target?: '_blank'; notPage?: boolean; dropdownItems?: dropdownItem[]; }; export type NavProps = { navs: INav[]; path: string; }; /** * Header 中的导航菜单 */ export declare const Navs: React.FC<NavProps>; export {};