Interface DeclarationHierarchy

Stores hierarchical type data.

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

Properties

Properties

types: Models.Type[]

The types represented by this node in the hierarchy.

isTarget?: boolean

Is this the entry containing the target type?

The next hierarchy level.