Statement.ExportNamedDeclaration
module ExportSpecifier: { ... };
module ExportBatchSpecifier: { ... };
type t('M, 'T) = {
declaration: option(Statement.t('M, 'T)),
specifiers: option(specifier('M)),
source: option(('M, StringLiteral.t('M))),
export_kind: Statement.export_kind,
comments: option(Syntax.t('M, unit)),
};
and specifier('M) =
| ExportSpecifiers(list(ExportSpecifier.t('M)))
| ExportBatchSpecifier(ExportBatchSpecifier.t('M))
;