interface ExportAllDeclaration {
    assertions?: null | ImportAttribute[];
    attributes?: null | ImportAttribute[];
    end?: null | number;
    exportKind?: null | "value" | "type";
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    source: StringLiteral;
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "ExportAllDeclaration";
}

Hierarchy (view full)

Properties

assertions?: null | ImportAttribute[]
attributes?: null | ImportAttribute[]
end?: null | number
exportKind?: null | "value" | "type"
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "ExportAllDeclaration"