interface DeclareExportDeclaration {
    declaration?: null | Flow;
    default?: null | boolean;
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    source?: null | StringLiteral;
    specifiers?: null | (ExportNamespaceSpecifier | ExportSpecifier)[];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "DeclareExportDeclaration";
}

Hierarchy (view full)

Properties

declaration?: null | Flow
default?: null | boolean
end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
range?: [number, number]
source?: null | StringLiteral
specifiers?: null | (ExportNamespaceSpecifier | ExportSpecifier)[]
start?: null | number
trailingComments?: null | Comment[]
type: "DeclareExportDeclaration"