UNPKG

docusaurus-plugin-typedoc-api

Version:

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

8 lines 292 B
import type { JSONOutput } from 'typedoc'; export interface HierarchyNode { types: JSONOutput.SomeType[]; next?: HierarchyNode; isTarget?: boolean; } export declare function createHierarchy(reflection: JSONOutput.Reflection): HierarchyNode; //# sourceMappingURL=hierarchy.d.ts.map