Defines the parts of an import type statement.

type ParsedImportType = {
    identFull: string;
    identImport: string;
    module: string;
}
Index

Properties

identFull: string

Fully qualified symbol including namespace.

identImport: string

The first part of the imported symbol to synthesize a module import.

module: string

The module / package imported.