TypeDoc API - v0.28.20
    Preparing search index...

    Interface DeclarationHierarchy

    Stores hierarchical type data.

    interface DeclarationHierarchy {
        types: SomeType[];
        isTarget?: boolean;
        next?: DeclarationHierarchy;
    }
    Index
    types: SomeType[]

    The types represented by this node in the hierarchy.

    isTarget?: boolean

    Is this the entry containing the target type?

    The next hierarchy level.