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

    An item found in a navto response.

    interface NavtoItem {
        containerKind?: ScriptElementKind;
        containerName?: string;
        end: tsc.server.protocol.Location;
        file: string;
        isCaseSensitive: boolean;
        kind: ScriptElementKind;
        kindModifiers?: string;
        matchKind: string;
        name: string;
        start: tsc.server.protocol.Location;
    }

    Hierarchy (View Summary)

    Index

    Properties

    containerKind?: ScriptElementKind

    Kind of symbol's container symbol (if any).

    containerName?: string

    Name of symbol's container symbol (if any); for example, the class name if symbol is a class member.

    One character past last character of the definition.

    file: string

    File containing text span.

    isCaseSensitive: boolean

    If this was a case sensitive or insensitive match.

    The symbol's kind (such as 'className' or 'parameterName').

    kindModifiers?: string

    Optional modifiers for the kind (such as 'public').

    matchKind: string

    exact, substring, or prefix.

    name: string

    The symbol's name.

    First character of the definition.