interface ImportExpression {
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    source: Expression;
    trailingComments?: Comment[];
    type: "ImportExpression";
}

Hierarchy (View Summary)

Properties

leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
source: Expression
trailingComments?: Comment[]
type: "ImportExpression"