KC's Workspace
    Preparing search index...

    Stores hierarchical type data.

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

    Properties

    Properties

    isTarget?: boolean

    Is this the entry containing the target type?

    The next hierarchy level.

    types: SomeType[]

    The types represented by this node in the hierarchy.