Module TypeDecl.Constructor

type argument =
| Tuple of TypeExpr.t list
| Record of Field.t list
type t = {
name : string;
doc : CComment.docs;
args : argument;
res : TypeExpr.t option;
}