justgook / elm-tiled / Tiled.Properties


type alias Properties =
Dict String Property


type Property
    = Bool Basics.Bool
    | Int Basics.Int
    | Float Basics.Float
    | String String
    | Color String
    | File String
    | Object Basics.Int

Custom properties values

decode : Json.Decode.Decoder Properties

encode : Properties -> Json.Encode.Value