Interface NavigationElement

interface NavigationElement {
    text: string;
    children?: NavigationElement[];
    class?: string;
    kind?: ReflectionKind;
    path?: string;
}

Properties

text: string
children?: NavigationElement[]
class?: string
path?: string