interface ExportNamedDeclaration {
    assertions?: null | ImportAttribute[];
    attributes?: null | ImportAttribute[];
    declaration?: null | Declaration;
    end?: null | number;
    exportKind?: null | "value" | "type";
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    source?: null | StringLiteral;
    specifiers: (ExportDefaultSpecifier | ExportNamespaceSpecifier | ExportSpecifier)[];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "ExportNamedDeclaration";
}

Hierarchy (view full)

Properties

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