data-cap
    Preparing search index...

    Interface ImportBinding

    One import { X as Y } from "..." (or namespace/default) binding found in a file's top-level statements.

    interface ImportBinding {
        importedName: string;
        localName: string;
        moduleSpecifier: string;
    }
    Index
    importedName: string

    The imported name, or the sentinel "*" (namespace import) / "default" (default import).

    localName: string

    The name this binding is referenced by within the file (Y above).

    moduleSpecifier: string

    The specifier exactly as written ("..." above) -- unresolved, relative or bare.