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

    Interface CompletionEntryDataUnresolved

    interface CompletionEntryDataUnresolved {
        ambientModuleName?: string;
        exportMapKey: ExportMapInfoKey;
        exportName: string;
        fileName?: string;
        isPackageJsonImport?: true;
        moduleSpecifier?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    ambientModuleName?: string

    The module name (with quotes stripped) of the export's module symbol, if it was an ambient module

    exportMapKey: ExportMapInfoKey
    exportName: string

    The name of the property or export in the module's symbol table. Differs from the completion name in the case of InternalSymbolName.ExportEquals and InternalSymbolName.Default.

    fileName?: string

    The file name declaring the export's module symbol, if it was an external module

    isPackageJsonImport?: true

    True if the export was found in the package.json AutoImportProvider

    moduleSpecifier?: string