Module Type.Predicate

type t('M, 'T) = ('M, t'('M, 'T));
and t'('M, 'T) = {
  1. kind: kind('M, 'T),
  2. comments: option(Syntax.t('M, unit)),
};
and kind('M, 'T) =
  1. | Declared(Expression.t('M, 'T))
  2. | Inferred
;