packages feed

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