Skip to content

Instantly share code, notes, and snippets.

@gdotdesign
Last active February 7, 2016 10:42
Show Gist options
  • Save gdotdesign/796380c9e3e677199f21 to your computer and use it in GitHub Desktop.
Save gdotdesign/796380c9e3e677199f21 to your computer and use it in GitHub Desktop.
type alias Model tag id err =
{ create : String -> List tag -> Task err tag
, failAddress : Maybe (Signal.Address err)
, remove : tag -> Task err tag
, input : Ui.Input.Model
, label : tag -> String
, tags : List tag
, removeable : Bool
, id : tag -> id
, disabled : Bool
, readonly : Bool
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment