elm-export-0.5.0.1: test/PostTypeWithOptions.elm
module PostTypeWithOptions exposing (..)
import CommentType exposing (..)
type alias Post =
{ postId : Int
, postName : String
, postAge : Maybe (Float)
, postComments : List (Comment)
, postPromoted : Maybe (Comment)
, postAuthor : Maybe (String)
}