supMDX-nav/dist/NavEntry.d.ts

13 lines
344 B
TypeScript
Raw Normal View History

2023-02-16 00:03:53 +09:00
/// <reference types="react" />
export type NavEntryInfo = {
label: string;
link: string;
children?: NavEntryInfo[];
};
export declare function NavEntry<Body>({ entry: { label, link, children }, dir, here, children: childrenJSX, }: {
entry: NavEntryInfo;
dir: string;
here: string;
children?: Body;
}): JSX.Element;