UNPKG

docusaurus-plugin-typedoc-api

Version:

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

14 lines 537 B
import type { Props as DocItemProps } from '@theme/DocItem'; import type { ApiOptions, PackageReflectionGroup } from '../types'; export interface ApiIndexProps extends Pick<DocItemProps, 'route'> { history: { location: { pathname: string; }; replace: (path: string) => void; }; options: ApiOptions; packages: PackageReflectionGroup[]; } export default function ApiIndex({ options, packages, history }: ApiIndexProps): import("react").JSX.Element; //# sourceMappingURL=ApiIndex.d.ts.map