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, 'T) specifier option;
  3. source : ('T * 'M StringLiteral.t) option;
  4. export_kind : Statement.export_kind;
  5. comments : ('M, unit) Syntax.t option;
}
and ('M, 'T) specifier =
  1. | ExportSpecifiers of ('M, 'T) ExportSpecifier.t list
  2. | ExportBatchSpecifier of ('M, 'T) ExportBatchSpecifier.t
val pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
val show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string
val pp_specifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) specifier -> unit
val show_specifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) specifier -> string