Interface DeclarationHierarchy

Stores hierarchical type data.

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

Properties

Properties

types: Models.SomeType[]

The types represented by this node in the hierarchy.

isTarget?: boolean

Is this the entry containing the target type?

The next hierarchy level.