Module Statement.ExportNamedDeclaration

module ExportSpecifier : sig ... end
module ExportBatchSpecifier : sig ... end
type ('M, 'T) t = {
  1. declaration : ('M, 'T) Statement.t option;
  2. specifiers : 'M specifier option;
  3. source : ('M * 'M StringLiteral.t) option;
  4. export_kind : Statement.export_kind;
  5. comments : ('M, unit) Syntax.t option;
}
and 'M specifier =
  1. | ExportSpecifiers of 'M ExportSpecifier.t list
  2. | ExportBatchSpecifier of 'M ExportBatchSpecifier.t