Interface ImportDirective

interface ImportDirective {
    absolutePath: string;
    file: string;
    id: number;
    nameLocation?: string;
    nodeType: "ImportDirective";
    scope: number;
    sourceUnit: number;
    src: string;
    symbolAliases: {
        foreign: Identifier;
        local?: null | string;
        nameLocation?: string;
    }[];
    unitAlias: string;
}

Properties

absolutePath: string
file: string
id: number
nameLocation?: string
nodeType: "ImportDirective"
scope: number
sourceUnit: number
src: string
symbolAliases: {
    foreign: Identifier;
    local?: null | string;
    nameLocation?: string;
}[]
unitAlias: string