reason-export-0.1.0.0: test/PostType.re
open CommentType
type post =
{ id : int
, name : string
, age : option (float)
, comments : list (comment)
, promoted : option (comment)
, author : option (string)
}
open CommentType
type post =
{ id : int
, name : string
, age : option (float)
, comments : list (comment)
, promoted : option (comment)
, author : option (string)
}