Module ComponentDeclaration.Params

type t('M, 'T) = ('M, t'('M, 'T));
and t'('M, 'T) = {
  1. params: list(Param.t('M, 'T)),
  2. rest: option(RestParam.t('M, 'T)),
  3. comments: option(Syntax.t('M, list(Comment.t('M)))),
};