Last active
February 7, 2016 10:42
-
-
Save gdotdesign/796380c9e3e677199f21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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