@servicenow/sdk - v4.4.1
    Preparing search index...

    Interface NavigationTree

    Node in a tree of nested declarations in a file. The top node is always a script or module node.

    interface NavigationTree {
        childItems?: tsc.NavigationTree[];
        kind: ScriptElementKind;
        kindModifiers: string;
        nameSpan: tsc.TextSpan | undefined;
        spans: tsc.TextSpan[];
        text: string;
    }
    Index

    Properties

    childItems?: tsc.NavigationTree[]

    Present if non-empty

    kindModifiers: string

    ScriptElementKindModifier separated by commas, e.g. "public,abstract"

    nameSpan: tsc.TextSpan | undefined
    spans: tsc.TextSpan[]

    Spans of the nodes that generated this declaration. There will be more than one if this is the result of merging.

    text: string

    Name of the declaration, or a short description, e.g. "".