packages feed

elm-export-0.4.1.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
    }