interface ExportAllDeclaration {
    exported: null | Identifier | Literal;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    source: Literal;
    trailingComments?: Comment[];
    type: "ExportAllDeclaration";
}

Hierarchy (View Summary)

Properties

exported: null | Identifier | Literal
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
source: Literal
trailingComments?: Comment[]
type: "ExportAllDeclaration"