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

    Interface ReferencedSymbolDefinitionInfo

    interface ReferencedSymbolDefinitionInfo {
        containerKind: ScriptElementKind;
        containerName: string;
        contextSpan?: tsc.TextSpan;
        displayParts: tsc.SymbolDisplayPart[];
        fileName: string;
        kind: ScriptElementKind;
        name: string;
        originalContextSpan?: tsc.TextSpan;
        originalFileName?: string;
        originalTextSpan?: tsc.TextSpan;
        textSpan: tsc.TextSpan;
        unverified?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    containerKind: ScriptElementKind
    containerName: string
    contextSpan?: tsc.TextSpan

    If DocumentSpan.textSpan is the span for name of the declaration, then this is the span for relevant declaration

    displayParts: tsc.SymbolDisplayPart[]
    fileName: string
    name: string
    originalContextSpan?: tsc.TextSpan
    originalFileName?: string
    originalTextSpan?: tsc.TextSpan

    If the span represents a location that was remapped (e.g. via a .d.ts.map file), then the original filename and span will be specified here

    textSpan: tsc.TextSpan
    unverified?: boolean