Module Statement.ExportDefaultDeclaration

type ('M, 'T) t = {
  1. default : 'T;
  2. declaration : ('M, 'T) declaration;
  3. comments : ('M, unit) Syntax.t option;
}
and ('M, 'T) declaration =
  1. | Declaration of ('M, 'T) Statement.t
  2. | Expression of ('M, 'T) Expression.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_declaration : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) declaration -> unit
val show_declaration : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) declaration -> string