package melange

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Statement.ExportNamedDeclarationSource

Sourcemodule ExportSpecifier : sig ... end
Sourcemodule ExportBatchSpecifier : sig ... end
Sourcetype ('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;
}
Sourceand ('M, 'T) specifier =
  1. | ExportSpecifiers of ('M, 'T) ExportSpecifier.t list
  2. | ExportBatchSpecifier of ('M, 'T) ExportBatchSpecifier.t
Sourceval pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
Sourceval show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string
Sourceval pp_specifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) specifier -> unit
Sourceval show_specifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) specifier -> string