interface ExportNamedDeclaration {
    declaration?: null | Declaration;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    source?: null | Literal;
    specifiers: ExportSpecifier[];
    trailingComments?: Comment[];
    type: "ExportNamedDeclaration";
}

Hierarchy (View Summary)

Properties

declaration?: null | Declaration
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
source?: null | Literal
specifiers: ExportSpecifier[]
trailingComments?: Comment[]
type: "ExportNamedDeclaration"