All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elm.Byte.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
module Byte exposing (Byte, decoder, encode)

import Json.Decode as Decode exposing (Decoder)
import Json.Encode as Encode


type alias Byte =
    String


decoder : Decoder Byte
decoder =
    Decode.string


encode : Byte -> Encode.Value
encode model =
    Encode.string model




© 2015 - 2024 Weber Informatics LLC | Privacy Policy