Module Function.Param

type t('M, 'T) = ('M, t'('M, 'T));
and t'('M, 'T) = {
  1. name: option(Identifier.t('M, 'T)),
  2. annot: Type.t('M, 'T),
  3. optional: bool,
};