interface ImportSpecifier {
    end?: null | number;
    extra?: Record<string, unknown>;
    importKind?: null | "value" | "type" | "typeof";
    imported: Identifier | StringLiteral;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    local: Identifier;
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "ImportSpecifier";
}

Hierarchy (view full)

Properties

end?: null | number
extra?: Record<string, unknown>
importKind?: null | "value" | "type" | "typeof"
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
local: Identifier
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "ImportSpecifier"