elm-export-0.4.1.1: test/PostType.elm
module PostType exposing (..)
import CommentType exposing (..)
type alias Post =
{ id : Int
, name : String
, age : Maybe Float
, comments : List Comment
, promoted : Maybe Comment
, author : Maybe String
}