Module Pattern.Object

module Property : sig ... end
type ('M, 'T) property =
  1. | Property of ('M, 'T) Property.t
  2. | RestElement of ('M, 'T) RestElement.t
and ('M, 'T) t = {
  1. properties : ('M, 'T) property list;
  2. annot : ('M, 'T) Type.annotation_or_hint;
  3. comments : ('M, 'M Comment.t list) Syntax.t option;
}