Module Statement.ExportDefaultDeclaration

type t('M, 'T) = {
  1. default: 'M,
  2. declaration: declaration('M, 'T),
  3. comments: option(Syntax.t('M, unit)),
};
and declaration('M, 'T) =
  1. | Declaration(Statement.t('M, 'T))
  2. | Expression(Expression.t('M, 'T))
;