UNPKG

docusaurus-plugin-typedoc-api

Version:

Docusaurus plugin that provides source code API documentation powered by TypeDoc.

10 lines 459 B
import type { Props as DocItemProps } from '@theme/DocItem'; export interface ApiItemProps extends Pick<DocItemProps, 'route'> { readme?: React.ComponentType; } export declare const ApiOptionsContext: import("react").Context<{ hideInherited: boolean; setHideInherited: (hideInherited: boolean) => void; }>; export default function ApiItem({ readme: Readme, route }: ApiItemProps): import("react").JSX.Element; //# sourceMappingURL=ApiItem.d.ts.map