Created
February 21, 2017 22:39
-
-
Save marick/ceed0c601db8634819da9a400fe4e5e3 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
--- THIS? | |
type Format | |
= Compact | |
| Expanded | |
| Editable Form | |
type alias DisplayedAnimal = | |
{ id : Id | |
, displayFormat : Format | |
-- ... | |
} | |
--- OR THIS? | |
type DisplayedAnimal = | |
= Compact Animal | |
| Expanded Animal | |
| Editable Animal Form | |
--- OR THIS? | |
type alias Form = | |
{ id : Id | |
, originalAnimal : Animal | |
-- ... | |
} | |
type DisplayedAnimal | |
= Compact Animal | |
| Expanded Animal | |
| Editable Form | |
-- OR ... | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment