Module Type.TypeParam

type t('M, 'T) = ('M, t'('M, 'T));
and t'('M, 'T) = {
  1. name: Identifier.t('M, 'M),
  2. bound: annotation_or_hint('M, 'T),
  3. variance: option(Variance.t('M)),
  4. default: option(t('M, 'T)),
};