packages feed

elm-export-0.6.0.1: test/CommentTypeWithOptions.elm

module CommentTypeWithOptions exposing (..)

import Date exposing (Date)
import Dict exposing (Dict)


type alias Comment =
    { commentPostId : Int
    , commentText : String
    , commentMainCategories : (String, String)
    , commentPublished : Bool
    , commentCreated : Date
    , commentTags : Dict (String) (Int)
    }