// https://github.com/TypeStrong/typedoc-default-themes/blob/master/src/default/partials/hierarchy.hbs import type { HierarchyNode } from '../utils/hierarchy'; import { Type } from './Type'; export interface HierarchyProps { tree: HierarchyNode; } export function Hierarchy({ tree }: HierarchyProps) { return ( ); }